ALways install ca-certificates in Docker

This commit is contained in:
Jonatan Kłosko 2025-02-13 00:06:18 +09:00
parent a344488b9e
commit 61bce0f39b

View file

@ -31,7 +31,7 @@ FROM base-${VARIANT} AS build
RUN apt-get update && apt-get upgrade -y && \ RUN apt-get update && apt-get upgrade -y && \
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \
build-essential git && \ build-essential ca-certificates git && \
apt-get clean -y && rm -rf /var/lib/apt/lists/* apt-get clean -y && rm -rf /var/lib/apt/lists/*
WORKDIR /app WORKDIR /app