From f65ae78eb9c21b4e3097e1b0917288ae58661b34 Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Fri, 1 Nov 2024 15:56:01 +0500 Subject: [PATCH] Add required packages to the docker image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1bfe3fd..03c41d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,12 @@ FROM rust:1.82-slim-bookworm AS builder +RUN apt update && apt install -y pkg-config libssl-dev WORKDIR /usr/src/comfycamp COPY . . RUN cargo install --path . FROM debian:bookworm-slim +RUN apt update && apt install -y ca-certificates && rm -rf /var/lib/apt/lists/* WORKDIR /usr/src/comfycamp RUN mkdir -p src/web