We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d20b9de commit f9d2b26Copy full SHA for f9d2b26
.dockerignore
@@ -2,3 +2,4 @@ node_modules
2
dist
3
.git
4
.gitignore
5
+Dockerfile
.gitignore
@@ -0,0 +1,2 @@
1
+node_modules
+dist
Dockerfile
@@ -1,8 +1,7 @@
FROM node:18 AS build
WORKDIR /app
COPY package.json package-lock.json ./
-RUN npm install
-COPY . .
+RUN npm ci
6
RUN npm run build
7
8
FROM nginx:alpine
README.md
@@ -1,4 +1,4 @@
-# hello-world2
+# hello-world
## Project setup
```
0 commit comments