We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a29ff commit 8615487Copy full SHA for 8615487
Dockerfile
@@ -0,0 +1,12 @@
1
+FROM python:3.6
2
+
3
+WORKDIR /app/backend
4
5
+COPY requirements.txt /app/backend
6
+RUN pip install -r requirements.txt
7
8
+COPY . /app/backend
9
10
+EXPOSE 8000
11
12
+CMD python /app/backend/manage.py runserver 0.0.0.0:8000
mynotes/Dockerfile
@@ -0,0 +1,10 @@
+FROM node:8
+WORKDIR /app/
+COPY . /app/
+RUN npm install
+EXPOSE 3000
+CMD ["npm","start"]
0 commit comments