craftbeerpi4-pione/Dockerfile
2018-11-04 00:47:26 +01:00

14 lines
168 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8080
CMD [ "python", "./run.py" ]