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-22 03:34:16 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
489c1395b0dc1a8d6e243201e9f11ce1f193d5e0
489c1395
1 parent
30829b04
update Dockerfile
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
back/prisma/Dockerfile
front/Dockerfile
back/prisma/Dockerfile
View file @
489c139
...
...
@@ -6,4 +6,4 @@ WORKDIR /app
COPY ./ ./prisma/
CMD
[ "prisma2", "studio", "--experimental" ]
\ No newline at end of file
CMD
["prisma", "studio", "--experimental"]
...
...
front/Dockerfile
View file @
489c139
FROM
node:12.16.2
RUN
mkdir /app
WORKDIR
/app
WORKDIR
/usr/src/app
ENV
PATH /app/node_modules/.bin:$PATH
COPY package*.json ./
COPY package*.json /app/
RUN
npm install --silent
RUN
npm install react-scripts@3.0.1 -g --silent
RUN
npm install
CMD
["npm", "start"]
\ No newline at end of file
COPY . .
\ No newline at end of file
...
...
Please
register
or
login
to post a comment