Private
Public Access
1
0

added non-tested Dockerfile & updated video gauges

This commit is contained in:
Sander Roosendaal
2020-01-02 16:55:57 +01:00
parent df35da5e0c
commit c97ac0e6fd
2 changed files with 18 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
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"]