Skip to content

Commit c5e1360

Browse files
committed
dockerfiles added
1 parent 8bfaeb2 commit c5e1360

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM node:6.11.5
2+
3+
WORKDIR /home
4+
5+
COPY . .
6+
7+
RUN make deps
8+
9+
EXPOSE 3000
10+
11+
RUN npm install forever
12+
13+
RUN npm install jshint -g
14+
15+
CMD ["make"]

0 commit comments

Comments
 (0)