We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb94ac8 commit d043d01Copy full SHA for d043d01
DJANGO PROJECTS/Chat/Dockerfile
@@ -0,0 +1,8 @@
1
+FROM python:3.10
2
+COPY requirements.txt /requirements.txt
3
+RUN pip install -r /requirements.txt
4
+WORKDIR /app
5
+COPY . /app
6
+RUN python manage.py migrate
7
+EXPOSE 8000
8
+CMD ["python","manage.py","runserver"]
0 commit comments