andhikagg commited on
Commit
ce148a4
·
verified ·
1 Parent(s): 3ecf27d

Upload Dockerfile.txt

Browse files
Files changed (1) hide show
  1. Dockerfile.txt +15 -0
Dockerfile.txt ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:latest
2
+
3
+ RUN apt-get update && apt-get install -y && rm -rf /var/lib/apt/lists/*
4
+
5
+ WORKDIR /app
6
+
7
+ COPY package.json .
8
+
9
+ RUN npm i && npm i -g coffeescript
10
+
11
+ COPY . .
12
+
13
+ EXPOSE 7860
14
+
15
+ CMD ["coffee", "main.coffee"]