mirror of
https://github.com/rystaf/mlmym.git
synced 2024-11-04 14:23:15 +00:00
20 lines
611 B
Docker
20 lines
611 B
Docker
FROM golang:1.20-bullseye as builder
|
|
RUN git config --global --add safe.directory /app
|
|
WORKDIR /app
|
|
COPY go.* ./
|
|
RUN go mod download
|
|
COPY . ./
|
|
RUN git describe --tag > VERSION
|
|
RUN go build -v -o mlmym
|
|
|
|
FROM debian:bullseye-slim
|
|
WORKDIR /app
|
|
RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
ca-certificates curl && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
COPY --from=builder /app/mlmym /app/mlmym
|
|
COPY --from=builder /app/templates /app/templates
|
|
COPY --from=builder /app/public /app/public
|
|
COPY --from=builder /app/VERSION /app/VERSION
|
|
CMD ["./mlmym", "--addr", "0.0.0.0:8080"]
|