chore: fix Docker build (#3594)

This commit is contained in:
Alejandro González
2025-05-02 17:40:34 +02:00
committed by GitHub
parent f932ce7706
commit 9821737431
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
FROM rust:1.82.0 as build
FROM rust:1.86.0 AS build
ENV PKG_CONFIG_ALLOW_CROSS=1
WORKDIR /usr/src/daedalus
@@ -9,9 +9,9 @@ RUN cargo build --release --package daedalus_client
FROM debian:bookworm-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates openssl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
&& apt-get install -y --no-install-recommends ca-certificates openssl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN update-ca-certificates

View File

@@ -1,4 +1,4 @@
FROM rust:1.84.0 as build
FROM rust:1.86.0 AS build
ENV PKG_CONFIG_ALLOW_CROSS=1
WORKDIR /usr/src/labrinth