We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae5adac commit 9233d3dCopy full SHA for 9233d3d
README.md
@@ -8,16 +8,12 @@ Supported tags and respective Dockerfile links
8
9
# Usage to build your apps
10
11
-```FROM katturaja/docker-node-oracle-base:8.12.0-slim
12
-
13
-## BUILD ARGUMENTS AND APPLICATION
14
-ARG NPM_TOKEN
15
-ARG NPM_LOG_LEVEL
16
17
-## Create app base directory
+```
+FROM katturaja/docker-node-oracle-base:8.12.0-slim
+# Create app base directory
18
RUN mkdir -p /src
19
20
-## Specify the "working directory" for the rest of the Dockerfile
+# Specify the "working directory" for the rest of the Dockerfile
21
WORKDIR /src
22
23
COPY . /src
@@ -27,4 +23,5 @@ RUN npm cache clean -f \
27
&& npm install --only=prod
28
24
29
25
EXPOSE 3000
30
-CMD ["node", "server.js"]```
26
+CMD ["node", "server.js"]
0 commit comments