build: Docker build no longer needs libssl installed.

This commit is contained in:
Cory McWilliams 2025-02-01 09:40:34 -05:00
parent 18bd3dfcf9
commit 6488ab60ec

View File

@ -4,16 +4,12 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
gcc \ gcc \
libc6-dev \ libc6-dev \
libssl-dev \
make make
COPY . /app COPY . /app
RUN make -C /app -j $(nproc) release RUN make -C /app -j $(nproc) release
FROM bitnami/minideb:bullseye FROM bitnami/minideb:bullseye
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libssl1.1
COPY --from=build /app/out/release/tildefriends /app/out/release/tildefriends COPY --from=build /app/out/release/tildefriends /app/out/release/tildefriends
COPY --from=build /app/apps /app/apps COPY --from=build /app/apps /app/apps