Use apt-get instead of apk since using debian
All checks were successful
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Successful in 2m25s
Podman Rootless Demo / deploy-prod (push) Successful in 59s

This commit is contained in:
continuist 2025-09-21 14:19:10 -04:00
parent fdc695b8f1
commit 8d816e7d71

View file

@ -33,7 +33,7 @@ ENV PORT=3000
ENV HOSTNAME=127.0.0.1 ENV HOSTNAME=127.0.0.1
# minimal probe tool # minimal probe tool
RUN apk add --no-cache wget RUN apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/*
# copy standalone artifacts # copy standalone artifacts
COPY --from=builder /app/public ./public COPY --from=builder /app/public ./public