Skip to content
Permalink
v1.0.1-SNAPSHOT
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
FROM python:3.7-slim
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN pip install gunicorn
EXPOSE 8080
ENTRYPOINT ["python"]
CMD ["app/app.py"]