pycms/Dockerfile

10 lines
145 B
Docker
Raw Normal View History

2021-10-18 18:16:02 +03:00
FROM python:latest
ADD . /app
WORKDIR /app
RUN pip3 install --upgrade pip && pip3 install -r requirements.txt
EXPOSE 8080
CMD python3 main.py