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:04:20 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
104b1a04f95fd7483aaec70024a8dccef37a8a63
104b1a04
1 parent
5780677a
add Dockerfile in prisma folder
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
back/prisma/Dockerfile
back/prisma/Dockerfile
0 → 100644
View file @
104b1a0
1
+
FROM
node:12.16.2
2
+
RUN
npm i -g @prisma/cli
3
+
4
+
RUN
mkdir /app
5
+
WORKDIR
/app
6
+
7
+
COPY ./ ./prisma/
8
+
9
+
CMD
["prisma", "admin"]
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment