craftbeerpi4-pione/Dockerfile

15 lines
168 B
Docker
Raw Normal View History

2018-11-04 00:47:26 +01:00
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" ]