mirror of
https://github.com/rystaf/mlmym.git
synced 2024-11-08 08:04:26 +00:00
Add curl to the container for healthcheck purposes (#89)
This commit is contained in:
parent
0f48251fc0
commit
4b5b4aa6e9
|
@ -10,7 +10,7 @@ RUN go build -v -o mlmym
|
||||||
FROM debian:bullseye-slim
|
FROM debian:bullseye-slim
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
||||||
ca-certificates && \
|
ca-certificates curl && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
COPY --from=builder /app/mlmym /app/mlmym
|
COPY --from=builder /app/mlmym /app/mlmym
|
||||||
COPY --from=builder /app/templates /app/templates
|
COPY --from=builder /app/templates /app/templates
|
||||||
|
|
Loading…
Reference in a new issue