FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
example-server-javascript-node/Dockerfile at main · xploitstech/example-server-javascript-node · GitHub
xploitstech
/
example-server-javascript-node
Public
forked from
VapiAI/example-server-javascript-node
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
example-server-javascript-node
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (18 loc) · 652 Bytes
Breadcrumbs
example-server-javascript-node
/
Dockerfile
Copy path
File metadata and controls
24 lines (18 loc) · 652 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
#
This file is generated by Nx.
#
#
Build the docker image with `npx nx docker-build vapiai`.
#
Tip: Modify "docker-build" options in project.json to change docker build args.
#
#
Run the container with `docker run -p 3000:3000 -t vapiai`.
FROM
docker.io/node:lts-alpine
ENV
HOST=0.0.0.0
ENV
PORT=3000
WORKDIR
/app
RUN
addgroup --system vapiai && \
adduser --system -G vapiai vapiai
COPY
dist/vapiai vapiai
RUN
chown -R vapiai:vapiai .
#
You can remove this install step if you build with `--bundle` option.
#
The bundled output will include external dependencies.
RUN
npm --prefix vapiai --omit=dev -f install
CMD
[
"node"
,
"vapiai"
]
Back
|
FazBrowse Home
|
New Git URL