FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ode-app/Dockerfile at develop · HelikarLab/ode-app · GitHub
HelikarLab
/
ode-app
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
5
Code
Issues
2
Pull requests
2
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
ode-app
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (22 loc) · 601 Bytes
Breadcrumbs
ode-app
/
Dockerfile
Copy path
File metadata and controls
30 lines (22 loc) · 601 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM
statebait/python-libsbml:with-stimator
#
Install pydash
RUN
pip3 install pydash
#
Install Node, yarn and bash
RUN
apk add --no-cache nodejs yarn bash git
#
Set the work directory
WORKDIR
/usr/src/app
#
Copy the required files
COPY
. .
#
Install the dependencies of the server and build the server
RUN
yarn \
&& cd server \
&& yarn build
#
Prepare the build folder
RUN
cp server/build/. build/ -R \
&& cp client/build build/public -R
#
Delete unnecessary files
RUN
rm cypress -rf \
&& rm client -rf \
&& rm server -rf
#
Expose port 5000
EXPOSE
5000
Back
|
FazBrowse Home
|
New Git URL