diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 16 |
1 files changed, 16 insertions, 0 deletions
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 . + |