mirror of
https://github.com/Telecominfraproject/oopt-gnpy-api.git
synced 2025-10-28 16:52:19 +00:00
7 lines
215 B
Docker
7 lines
215 B
Docker
FROM python:3.9-slim
|
|
COPY . /oopt-gnpy-api
|
|
WORKDIR /oopt-gnpy-api
|
|
RUN apt update; apt install -y git
|
|
RUN pip install .
|
|
RUN mkdir -p /opt/application/oopt-gnpy/autodesign
|
|
CMD [ "python", "./samples/rest_example.py" ] |