From e3b3248446f2ac7b08a7f08e3c100869a3e0e390 Mon Sep 17 00:00:00 2001 From: trivernis Date: Sat, 25 Sep 2021 12:57:02 +0200 Subject: [PATCH] Add missing package for openssl-sys build Signed-off-by: trivernis --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b057755..1066ef5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.0-experimental FROM rust:slim-bullseye AS builder RUN apt-get update -RUN apt-get install -y build-essential libssl-dev libopus-dev libpq-dev +RUN apt-get install -y build-essential libssl-dev libopus-dev libpq-dev pkg-config WORKDIR /usr/src RUN USER=root cargo new tobi WORKDIR /usr/src/tobi @@ -25,7 +25,7 @@ RUN cp qalculate-3.18.0/* /tmp/qalculate FROM bitnami/minideb:bullseye RUN apt update -RUN apt install openssl libopus0 ffmpeg python3 python3-pip libpq5 -y +RUN apt install openssl libopus0 ffmpeg python3 python3-pip libpq5 pkg-config -y COPY --from=qalculate-builder /tmp/qalculate/* /usr/bin/ COPY --from=builder /tmp/tobi/tobi-rs . RUN pip3 install youtube-dl