Skip to content

Commit

Permalink
update ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
schristley committed Oct 19, 2024
1 parent a1a0a9f commit 5120bef
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04
FROM ubuntu:24.04

LABEL maintainer="AIRR Community"

Expand All @@ -8,6 +8,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -
python3-pip \
python3-sphinx \
python3-scipy \
python3-venv \
libyaml-dev \
r-base \
r-base-dev \
Expand All @@ -21,6 +22,12 @@ RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -
libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev \
nano

# Create a virtual environment
RUN python3 -m venv /airr-venv

# Activate the virtual environment
ENV PATH="/airr-venv/bin:$PATH"

RUN pip3 install \
pandas \
biopython \
Expand Down

0 comments on commit 5120bef

Please sign in to comment.