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 8bfaeb2 commit c5e1360Copy full SHA for c5e1360
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM python:2
2
+
3
+WORKDIR /usr/src/app
4
5
+RUN pip install --no-cache-dir bottle
6
7
+COPY . .
8
9
+EXPOSE 8003
10
11
+CMD [ "python", "./v3/bottle_server.py" ]
v4-cokapi/Dockerfile
@@ -0,0 +1,15 @@
+FROM node:6.11.5
+WORKDIR /home
+RUN make deps
+EXPOSE 3000
+RUN npm install forever
12
13
+RUN npm install jshint -g
14
15
+CMD ["make"]
0 commit comments