morrispetris commited on
Commit
1e2e37d
·
1 Parent(s): bc43e0a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +29 -0
Dockerfile ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # from official image
2
+ FROM ubuntu:18.04
3
+
4
+ # key-value pairs
5
+ # allow more than one
6
+ #
7
+ LABEL version="1.0"
8
+
9
+ # install package
10
+ RUN apt-get update
11
+ RUN apt-get install -y curl sudo
12
+ RUN curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
13
+ RUN apt-get install -y nodejs
14
+
15
+ # set working directory to /app
16
+ WORKDIR /app
17
+
18
+ # copy index.js from current directory into the container at /app
19
+ COPY . /app
20
+
21
+ # install need packages specified in package.json
22
+ RUN npm install
23
+
24
+ # expose port 7860 for acessing the app
25
+ EXPOSE 7860
26
+
27
+
28
+ # run app when container launches
29
+ CMD ["node", "app.js"]