This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
WebSlider/Dockerfile
2019-12-30 15:59:58 +01:00

10 lines
193 B
Docker

FROM python:3
ADD app /app
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install --requirement /app/requirements.txt
WORKDIR /app
EXPOSE 5000/TCP
CMD [ "python3", "server.py" ]