mirror of
https://github.com/Telecominfraproject/oopt-gnpy.git
synced 2025-10-29 17:22:42 +00:00
9 lines
201 B
Docker
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"]
|