diff options
author | github-classroom[bot] <66690702+github-classroom[bot]@users.noreply.github.com> | 2023-10-04 16:42:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 16:42:46 +0200 |
commit | ccdbbb4716b240c3e5aa4c3389dcd92e142df22e (patch) | |
tree | 7335976fc7bb1b79d8b8812886f94715fe59ed95 /Dockerfile | |
download | act4e-ccdbbb4716b240c3e5aa4c3389dcd92e142df22e.tar.gz act4e-ccdbbb4716b240c3e5aa4c3389dcd92e142df22e.zip |
Initial commit
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 . + |