parent
80418083e5
commit
0eaa3bc594
@ -0,0 +1,9 @@
|
||||
FROM django
|
||||
|
||||
EXPOSE 8000
|
||||
WORKDIR /app
|
||||
COPY requirements.txt ./
|
||||
RUN pip install -r requirements.txt
|
||||
COPY . /app
|
||||
|
||||
ENTRYPOINT ["python3", "manage.py", "runserver", "0.0.0.0:8000"]
|
Loading…
Reference in new issue