diff --git a/Dockerfile b/Dockerfile index 137fa0e4..f7be0f2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bullseye AS build +FROM bitnami/minideb:bullseye AS build RUN apt-get update && \ apt-get install -y --no-install-recommends \ @@ -8,11 +8,11 @@ RUN apt-get update && \ COPY . /app RUN make -C /app -j $(nproc) release -FROM debian:bullseye +FROM bitnami/minideb:bullseye RUN apt-get update && \ apt-get install -y --no-install-recommends \ - libsodium23 \ libssl1.1 + COPY --from=build /app/out/release/tildefriends /app/out/release/tildefriends COPY --from=build /app/apps /app/apps COPY --from=build /app/core /app/core