Skip to content

Commit 9233d3d

Browse files
authored
Update README.md
1 parent ae5adac commit 9233d3d

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,12 @@ Supported tags and respective Dockerfile links
88

99
# Usage to build your apps
1010

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
11+
```
12+
FROM katturaja/docker-node-oracle-base:8.12.0-slim
13+
# Create app base directory
1814
RUN mkdir -p /src
1915
20-
## Specify the "working directory" for the rest of the Dockerfile
16+
# Specify the "working directory" for the rest of the Dockerfile
2117
WORKDIR /src
2218
2319
COPY . /src
@@ -27,4 +23,5 @@ RUN npm cache clean -f \
2723
&& npm install --only=prod
2824
2925
EXPOSE 3000
30-
CMD ["node", "server.js"]```
26+
CMD ["node", "server.js"]
27+
```

0 commit comments

Comments
 (0)