mirror of
https://github.com/Manuel83/craftbeerpi3
synced 2026-08-09 18:52:40 +02:00
14 lines
203 B
Docker
14 lines
203 B
Docker
# Dockerfile for development on a pc/mac
|
|
FROM python:2
|
|
|
|
EXPOSE 5000
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "run.py"] |