Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김성욱
/
Docker
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김성욱
2022-05-13 02:16:43 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d6bc7c884026dbb9d4c3efe98b0d12426fbc498a
d6bc7c88
1 parent
1907d31e
commit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
Dockerfile
Dockerfile
0 → 100644
View file @
d6bc7c8
1
+
FROM
node:7.6.0
2
+
3
+
WORKDIR
/app
4
+
5
+
COPY package*.json ./
6
+
7
+
RUN
npm install --silent
8
+
9
+
COPY . /app
10
+
11
+
EXPOSE
80
12
+
13
+
CMD
[ "node", "app.js" ]
Please
register
or
login
to post a comment