FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-ddd-example/Dockerfile at main · EGUASTAY/java-ddd-example · GitHub
EGUASTAY
/
java-ddd-example
Public template
forked from
CodelyTV/java-ddd-example
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
java-ddd-example
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
15 lines (10 loc) · 481 Bytes
Breadcrumbs
java-ddd-example
/
Dockerfile
Copy path
File metadata and controls
15 lines (10 loc) · 481 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
FROM
openjdk:21-slim-buster
WORKDIR
/app
RUN
apt update && apt install -y curl git
ENV
NVM_DIR /usr/local/nvm
ENV
NODE_VERSION 18.0.0
RUN
mkdir -p $NVM_DIR
RUN
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
RUN
. $NVM_DIR/nvm.sh && nvm install $NODE_VERSION && nvm alias default $NODE_VERSION && nvm use default
ENV
NODE_PATH $NVM_DIR/versions/node/v$NODE_VERSION/lib/node_modules
ENV
PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
Back
|
FazBrowse Home
|
New Git URL