program_service/Dockerfile
marcsello 7a3cb2afd8
Some checks reported errors
continuous-integration/drone/push Build was killed
Added skeleton
2021-04-14 19:22:22 +02:00

11 lines
225 B
Docker

FROM python:3.9
ADD program_service requirements.txt /program_service/
WORKDIR /program_service/
RUN pip3 install -r requirements.txt && pip3 install gunicorn
EXPOSE 8000
CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"]