Skip to content

Commit

Permalink
Fix Docker Images (#1063)
Browse files Browse the repository at this point in the history
Images built on Debian 12 were failing due to openssl lib issue.
Upgrading to Debian 12 will require more significant changes to our
dependencies, so for now use `bullseye`-based images, which will keep
our images on latest 11.x release.

Fixes #1061
  • Loading branch information
jaymell authored Aug 30, 2023
1 parent 838491f commit 1dcf350
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bridge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN touch */src/lib.rs && touch */src/main.rs
RUN cargo build --release --frozen

# Production
FROM debian:12.1-slim AS prod
FROM debian:bullseye-slim AS prod

RUN set -ex ; \
mkdir -p /app ;\
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ COPY . .
RUN cargo build --release --frozen

# Production
FROM debian:12.1-slim AS prod
FROM debian:bullseye-slim AS prod

RUN set -ex ; \
mkdir -p /app ;\
Expand Down

0 comments on commit 1dcf350

Please sign in to comment.