Files
oopt-gnpy/Dockerfile
Jan Kundrát 5ad6336fda Docker: use a newer Python
Change-Id: I2e6725f7a009690f1a49a77d9ec4ff696141d5b5
2021-06-02 23:22:32 +02:00

9 lines
201 B
Docker

FROM python:3.9-slim
COPY . /oopt-gnpy
WORKDIR /oopt-gnpy
RUN apt update; apt install -y git
RUN pip install .
WORKDIR /shared/example-data
ENTRYPOINT ["/oopt-gnpy/.docker-entry.sh"]
CMD ["/bin/bash"]