FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
hackerAPI/Dockerfile at dev · hackmcgill/hackerAPI · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
hackmcgill
/
hackerAPI
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
24
Code
Issues
11
Pull requests
14
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
hackerAPI
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
18 lines (12 loc) · 216 Bytes
Breadcrumbs
hackerAPI
/
Dockerfile
Copy path
File metadata and controls
executable file
·
18 lines (12 loc) · 216 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
FROM
node:carbon
ENV
PORT 8080
WORKDIR
/usr/src/app
COPY
package*.json ./
ADD
VERSION .
RUN
npm install -g n
RUN
n 9.9.0
RUN
npm install npm -g
RUN
npm install
COPY
. .
EXPOSE
8080
CMD
[
"npm"
,
"run"
,
"debug"
]
Back
|
FazBrowse Home
|
New Git URL