cruxx4 commited on
Commit
f7576af
·
verified ·
1 Parent(s): b990b95

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:latest
2
+ RUN apt-get update
3
+ WORKDIR /app
4
+ COPY package.json .
5
+ RUN npm i && npm i -g coffeescript
6
+ COPY . .
7
+ CMD ["coffee", "main.coffee"]