Add wget to Alpine image for enhanced functionality
Some checks failed
CI / ci (push) Failing after 1m51s

This commit is contained in:
2026-08-25 23:30:19 +02:00
parent 95739892de
commit ab42e16eca

View File

@@ -15,7 +15,7 @@ COPY crates/ ./crates/
RUN cargo build --release --bin k-mood
FROM alpine:3
RUN apk add --no-cache ca-certificates
RUN apk add --no-cache ca-certificates wget
COPY --from=builder /app/target/release/k-mood /usr/local/bin/k-mood
COPY --from=frontend /app/spa/dist /spa/dist