Skip to content

Commit fcf7d9d

Browse files
committed
fix(Dockerfile): update docker-compose version and add openssl dependency
1 parent aa12ce3 commit fcf7d9d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ RUN cargo build --release
1212

1313
FROM debian:12-slim AS final
1414

15+
RUN apt-get update && apt install -y openssl
16+
1517
COPY --from=build /app/target/release/wrpt /usr/bin/
16-
COPY --from=docker/compose-bin:2.17.0 /docker-compose /usr/bin/compose
18+
COPY --from=docker/compose-bin:latest /docker-compose /usr/bin/compose
1719

1820
ENTRYPOINT ["/bin/wrpt"]

0 commit comments

Comments
 (0)