We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a0bc4 commit 43c535aCopy full SHA for 43c535a
Dockerfile
@@ -0,0 +1,10 @@
1
+FROM python AS builder
2
+EXPOSE 8000
3
+WORKDIR /mysite
4
+COPY requirements.txt /mysite
5
+RUN pip install --upgrade pip
6
+RUN pip install --upgrade pip setuptools wheel
7
+RUN pip install -r requirements.txt
8
+COPY . /mysite
9
+ENTRYPOINT ["python"]
10
+CMD ["manage.py", "runserver", "0.0.0.0:8000"]
0 commit comments