Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-04-17 13:05:17 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
448fb81aea8223f3d98d1398a24c8dbd0c20b63d
448fb81a
1 parent
ea1a3e87
add Dockerfile in front folder
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
front/Dockerfile
front/Dockerfile
0 → 100644
View file @
448fb81
1
+
FROM
node:12.16.2
2
+
3
+
RUN
mkdir /app
4
+
WORKDIR
/app
5
+
RUN
npx create-react-app .
6
+
7
+
COPY package*.json ./
8
+
RUN
npm install
9
+
10
+
CMD
["npm", "start"]
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment