mirror of
https://github.com/gsi-upm/senpy
synced 2025-03-03 05:23:21 +00:00
10 lines
232 B
Docker
10 lines
232 B
Docker
from python:{{PYVERSION}}-slim
|
|
|
|
WORKDIR /usr/src/app
|
|
ADD requirements.txt /usr/src/app/
|
|
RUN pip install -r requirements.txt
|
|
ADD . /usr/src/app/
|
|
RUN pip install .
|
|
|
|
ENTRYPOINT ["python", "-m", "senpy", "-f", ".", "--host", "0.0.0.0"]
|