Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이의준
/
OSS
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Authored by
Samadal
2021-05-23 08:06:05 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d36d026f5d4e98fe467210f6cf0a1c94119d3276
d36d026f
1 parent
e28f9c55
upload dockerfile from ubuntu
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
Experiments/express/assignments/assignment01/dockerfile.txt
Experiments/express/assignments/assignment01/dockerfile.txt
0 → 100644
View file @
d36d026
FROM node:12-alpine
LABEL project="docker_assignment"
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 80
CMD ["node", "app.js"]
Please
register
or
login
to post a comment