bingo/Dockerfile
2020-01-26 11:55:20 -05:00

12 lines
166 B
Docker

FROM python:3.8
WORKDIR /app
ADD requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "app.py"]
EXPOSE 80
COPY . /app