infra/op-ufm/Dockerfile

31 lines
530 B
Docker
Raw Normal View History

FROM golang:1.21.1-alpine3.18 as builder
ARG GITCOMMIT=docker
ARG GITDATE=docker
ARG GITVERSION=docker
RUN apk add make jq git gcc musl-dev linux-headers
2023-07-18 20:21:19 +03:00
COPY ./op-ufm /app
WORKDIR /app
RUN make ufm
FROM alpine:3.18
2023-07-18 20:21:19 +03:00
COPY --from=builder /app/entrypoint.sh /bin/entrypoint.sh
COPY --from=builder /app/bin/ufm /bin/ufm
RUN apk update && \
chmod +x /bin/entrypoint.sh
2023-09-07 01:15:32 +03:00
RUN apk add ca-certificates jq curl bind-tools
VOLUME /etc/ufm
2023-07-18 20:21:19 +03:00
EXPOSE 8080
ENTRYPOINT ["/bin/entrypoint.sh"]
2023-07-18 20:21:19 +03:00
CMD ["/bin/ufm", "/etc/ufm/config.toml"]