Skip to content

Commit db0a54f

Browse files
committed
fix(docker): update openssl version 3.0.17 -> 3.5.1 to fix tls panic (#3516)
1 parent 0124527 commit db0a54f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

engine/docker/universal/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# MARK: Builder
44
# TODO(RVT-4168): Compile libfdb from scratch for ARM
5-
FROM rust:1.88.0-bookworm AS builder
5+
FROM rust:1.91.0-trixie AS builder
66

77
# Docker automatically provides TARGETARCH
88
ARG TARGETARCH
@@ -75,7 +75,7 @@ RUN \
7575
cp target/$CARGO_BUILD_MODE/rivet-engine /app/dist/
7676

7777
# MARK: Engine (full, base)
78-
FROM debian:12.9-slim AS engine-full-base
78+
FROM debian:13.1-slim AS engine-full-base
7979

8080
# Docker automatically provides TARGETARCH
8181
ARG TARGETARCH
@@ -108,7 +108,7 @@ ENTRYPOINT ["/usr/bin/rivet-engine"]
108108
CMD ["start"]
109109

110110
# MARK: Engine (Slim)
111-
FROM debian:12.9-slim AS engine-slim
111+
FROM debian:13.1-slim AS engine-slim
112112

113113
LABEL org.opencontainers.image.source=https://github.com/rivet-gg/rivet
114114

@@ -130,3 +130,4 @@ COPY --from=builder /app/dist/rivet-engine /usr/bin/rivet-engine
130130

131131
ENTRYPOINT ["/usr/bin/rivet-engine"]
132132
CMD ["start"]
133+

0 commit comments

Comments
 (0)