Compare commits

..

1 commit

Author SHA1 Message Date
f939dd9344 chore(deps): pin dependencies
Some checks failed
ci/woodpecker/pr/workflow Pipeline failed
2025-11-12 00:02:07 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ steps:
when:
- event: [tag, manual, push, pull_request]
branch: main
image: docker@sha256:2a232a42256f70d78e3cc5d2b5d6b3276710a0de0596c145f627ecfae90282ac
image: docker@sha256:96789d56621ae702a2f8aa316c87a1a1875dd3f02bf67cdcb56a524a09fa3af9
environment:
DOCKER_USERNAME:
from_secret: docker_public_username

View file

@ -5,7 +5,7 @@ COPY . .
RUN bun i && bun run build
# Production stage to run the application
FROM cgr.dev/chainguard/nginx@sha256:42430f713d950dc1269dc22cc46e4dadb5085a016031093c71de064ba1ba797b AS production
FROM cgr.dev/chainguard/nginx@sha256:816d865f2888f57d68928fc61049924ddd81523c1a0d1762fb2724f5eca6873e AS production
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 8080
ENTRYPOINT ["nginx", "-g", "daemon off;"]