FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
web-frameworks/javascript/node.Dockerfile at develop · SimplifyNet/web-frameworks · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
SimplifyNet
/
web-frameworks
Public
forked from
the-benchmarker/web-frameworks
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
web-frameworks
/
javascript
/
node.Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
36 lines (28 loc) · 726 Bytes
Breadcrumbs
web-frameworks
/
javascript
/
node.Dockerfile
Copy path
File metadata and controls
36 lines (28 loc) · 726 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
31
32
33
34
35
36
{{#language.node.version}}
FROM
node:{{{.}}}-trixie-slim
{{/language.node.version}}
{{^language.node.version}}
FROM
node:26.5-trixie-slim
{{/language.node.version}}
WORKDIR
/usr/src/app
ARG
DEBIAN_FRONTEND=noninteractive
RUN
apt-get -qq update && \
apt-get -qy install --no-install-recommends curl && \
{{#build_deps.length}}
apt-get -y install {{#build_deps}}{{.}} {{/build_deps}} && \
{{/build_deps.length}}
rm -rf /var/lib/apt/lists/*
{{#files}}
COPY
'{{source}}'
'{{target}}'
{{/files}}
{{#bootstrap}}
RUN
{{{.}}}
{{/bootstrap}}
{{#environment}}
ENV
{{{.}}}
{{/environment}}
{{#fixes}}
RUN
{{{.}}}
{{/fixes}}
HEALTHCHECK
CMD curl --fail http://0.0.0.0:3000 || exit 1
ENTRYPOINT
{{{command}}}
Back
|
FazBrowse Home
|
New Git URL