Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update oven/bun Docker tag to v1.1.7 #42

Merged
merged 1 commit into from
May 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/uml2ts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM oven/bun:1.1.6 AS base
FROM oven/bun:1.1.7 AS base
ARG BUILDPLATFORM
WORKDIR /build

Expand Down Expand Up @@ -35,6 +35,6 @@ RUN bun build \
FROM ubuntu:noble-20240429 AS test
COPY --from=build /build/dist/uml2ts .

FROM --platform=$BUILDPLATFORM oven/bun:1.1.6-distroless
FROM --platform=$BUILDPLATFORM oven/bun:1.1.7-distroless
COPY --from=build /build/dist/uml2ts /
ENTRYPOINT ["/uml2ts"]