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

[Snyk] Security upgrade debian from bookworm to 12.5 #200

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm AS htslib_build
FROM debian:12.5 AS htslib_build

ARG HTSLIB_BRANCH

Expand Down Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && \
make && \
make install

FROM debian:bookworm AS bambi_build
FROM debian:12.5 AS bambi_build

COPY --from=htslib_build /tmp/usr/local /usr/local
COPY . /usr/local/src/bambi
Expand Down Expand Up @@ -60,7 +60,7 @@ RUN apt-get update && \
make CPPFLAGS="-I$PREFIX/include" LDFLAGS="-L$PREFIX/lib" && \
make install prefix="$PREFIX"

FROM debian:bookworm AS bambi
FROM debian:12.5 AS bambi

COPY --from=htslib_build /tmp/usr/local /usr/local
COPY --from=bambi_build /tmp/usr/local /usr/local
Expand Down
Loading