Delete Dockerfile

This commit is contained in:
2022-01-19 13:20:03 +00:00
committed by GitHub
parent 0354662864
commit 375b0af2fd

View File

@@ -1,12 +0,0 @@
FROM python:3.6
WORKDIR /app
ADD . /app
RUN pip install -r requirements.txt && \
python manage.py collectstatic --noinput
EXPOSE 8000
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]