From 5120bef5712517897900b0950f53fd01f70d68a6 Mon Sep 17 00:00:00 2001 From: Scott Christley Date: Sat, 19 Oct 2024 17:56:31 -0500 Subject: [PATCH] update ubuntu --- docker/Dockerfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 2f62cdac..0b836ffd 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 +FROM ubuntu:24.04 LABEL maintainer="AIRR Community" @@ -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 \ @@ -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 \