Skip to content

Commit

Permalink
Update debian bullseye to bookworm (#8264)
Browse files Browse the repository at this point in the history
* chore(backend): Update debian bullseye to bookworm

this also means going from golang 1.20.4 to 1.20.5

* chore(notice): Update to 2025
  • Loading branch information
wbkoetsier authored Jan 16, 2025
1 parent 31dacd8 commit 40ec132
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
#While incubation status is not necessarily a reflection of the completeness or stability of the code,
#it does indicate that the project has yet to be fully endorsed by the ASF.

FROM --platform=linux/amd64 debian:bullseye as debian-amd64
FROM --platform=linux/amd64 debian:bookworm as debian-amd64
RUN apt-get update
RUN apt-get install -y libssh2-1-dev libssl-dev zlib1g-dev

FROM --platform=linux/arm64 debian:bullseye as debian-arm64
FROM --platform=linux/arm64 debian:bookworm as debian-arm64
RUN apt-get update
RUN apt-get install -y libssh2-1-dev libssl-dev zlib1g-dev

FROM --platform=$BUILDPLATFORM golang:1.20.4-bullseye as builder
FROM --platform=$BUILDPLATFORM golang:1.20.5-bookworm as builder

# docker build --build-arg GOPROXY=https://goproxy.io,direct -t mericodev/lake .
ARG GOPROXY=
Expand Down Expand Up @@ -113,7 +113,7 @@ RUN cd /usr/local/deps/target/lib && \
done


FROM python:3.9-slim-bullseye as base
FROM python:3.9-slim-bookworm as base

RUN apt-get update && \
apt-get install -y python3-dev python3-pip tar pkg-config curl libssh2-1 zlib1g libffi-dev default-libmysqlclient-dev libpq-dev tini git openssh-client corkscrew && \
Expand Down

0 comments on commit 40ec132

Please sign in to comment.