From f8e5f08c1c3fc93f6fe266b36ceeed2a0d04a9c7 Mon Sep 17 00:00:00 2001 From: James McLaughlin Date: Tue, 30 Jul 2024 22:28:23 +0100 Subject: [PATCH] add python docker env --- docker_envs/Dockerfile.python | 5 +++++ docker_envs/build_and_push.sh | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 docker_envs/Dockerfile.python diff --git a/docker_envs/Dockerfile.python b/docker_envs/Dockerfile.python new file mode 100644 index 0000000..7bf3624 --- /dev/null +++ b/docker_envs/Dockerfile.python @@ -0,0 +1,5 @@ + +FROM python:3.11-buster + +RUN pip install pandas + diff --git a/docker_envs/build_and_push.sh b/docker_envs/build_and_push.sh index 8f09be2..eb06a6b 100755 --- a/docker_envs/build_and_push.sh +++ b/docker_envs/build_and_push.sh @@ -4,8 +4,12 @@ set -e docker build -t ghcr.io/ebispot/grebi_solr_with_python:9.5.0 -f Dockerfile.solr_with_python . docker build -t ghcr.io/ebispot/grebi_neo4j_with_python:5.18.0 -f Dockerfile.neo4j_with_python . +docker build -t ghcr.io/ebispot/grebi_python:3.11 -f Dockerfile.python . docker build -t ghcr.io/ebispot/rust_for_codon:1.74 -f Dockerfile.rust_for_codon . docker push ghcr.io/ebispot/grebi_solr_with_python:9.5.0 docker push ghcr.io/ebispot/grebi_neo4j_with_python:5.18.0 +docker push ghcr.io/ebispot/grebi_python:3.11 docker push ghcr.io/ebispot/rust_for_codon:1.74 + +