Docker: Major refactoring (#87)

This commit is contained in:
Ole Schütt 2018-11-08 13:56:15 +01:00 committed by GitHub
parent 30e41bb77a
commit 4a97bb7342
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
77 changed files with 1031 additions and 1051 deletions

View file

@ -0,0 +1,16 @@
FROM ubuntu:18.04
# author: Ole Schuett
WORKDIR /workspace
COPY ./scripts/install_basics.sh .
RUN ./install_basics.sh
COPY ./scripts/install_python.sh .
RUN ./install_python.sh
COPY ./scripts/ci_entrypoint.sh ./scripts/test_python.sh ./
CMD ["./ci_entrypoint.sh", "./test_python.sh"]
#EOF