Compare commits

..

1 commit

Author SHA1 Message Date
a125b83602 chore(deps): pin dependencies
All checks were successful
ci/woodpecker/pr/workflow Pipeline was successful
2025-06-18 00:02:38 +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:17aa5b215f2b70bc0e456a87bcdd93e8774f133c73452df69d89606abc555270
image: docker@sha256:ff052514f359111edd920b54581e7aca65629458607f9fbdbf82d7eefbe0602b
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:3f441909e00e45dadfb8b27db23b3045a3a70007b7f7062e86b48b4ddeda8f15 AS production
FROM cgr.dev/chainguard/nginx@sha256:970dc3d0133fe3fcd73506c37d546142994848881010a906d6c0958fa9a539b6 AS production
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 8080
ENTRYPOINT ["nginx", "-g", "daemon off;"]