From ccdbbb4716b240c3e5aa4c3389dcd92e142df22e Mon Sep 17 00:00:00 2001 From: "github-classroom[bot]" <66690702+github-classroom[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:42:46 +0000 Subject: Initial commit --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e131248 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +# ARG DOCKER_REGISTRY=docker.io +# FROM ${DOCKER_REGISTRY}/act4e/act4e-tests:alphubel + +FROM python:3.10 +RUN python3 -m pip install -U pip -v +WORKDIR /ACT4E + +RUN uname -a +COPY .devcontainer/requirements.txt . +RUN python3 -m pip install -r requirements.txt + +COPY src src +COPY setup.py . + +RUN python3 -m pip install -e . + -- cgit v1.2.1