diff options
author | Andrea Censi <acensi@ethz.ch> | 2022-02-22 20:02:29 +0100 |
---|---|---|
committer | Andrea Censi <acensi@ethz.ch> | 2022-02-22 20:02:29 +0100 |
commit | d7381d180ec8e9f72a5fae76ad713003b30b4c7e (patch) | |
tree | 3a4a2aa0c9224592ac62d43f1ad5cf8082230a11 /Dockerfile | |
parent | more comments (diff) | |
parent | fix (diff) | |
download | act4e-d7381d180ec8e9f72a5fae76ad713003b30b4c7e.tar.gz act4e-d7381d180ec8e9f72a5fae76ad713003b30b4c7e.zip |
misc
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,8 +1,11 @@ -ARG DOCKER_REGISTRY -FROM ${DOCKER_REGISTRY}/act4e/act4e-tests:alphubel +# 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 requirements.txt . RUN python3 -m pip install -r requirements.txt |