Private
Public Access
1
0
Files
rowsandall/Dockerfile
Sander Roosendaal 45d1823b70 updated Dockerfile
2020-01-02 17:00:29 +01:00

8 lines
185 B
Docker

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