We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0908f0 commit db048c5Copy full SHA for db048c5
3 files changed
Dockerfile
@@ -5,7 +5,7 @@ RUN npm install
5
COPY . .
6
RUN npm run build --prod
7
8
-FROM nginx:alpine
+FROM nginx:stable-alpine-slim
9
COPY --from=build /usr/src/app/dist/prototype/browser /usr/share/nginx/html
10
EXPOSE 80
11
CMD ["nginx", "-g", "daemon off;"]
Dockerfile-nginx-only Dockerfile-slimDockerfile-nginx-only renamed to Dockerfile-slim
@@ -1,4 +1,4 @@
1
2
COPY ./dist/prototype/browser /usr/share/nginx/html
3
4
README.md
@@ -5,7 +5,7 @@
### Testing pipeline
make changes
```shell
-VERSION="v0.0.28"
+VERSION="v0.0.29"
git fetch --all --prune --prune-tags
git commit -am "Testing pipeline: $VERSION"
git tag -a $VERSION -m "Release $VERSION"
0 commit comments