mirror of
https://github.com/absmach/supermq.git
synced 2026-06-23 07:10:19 +00:00
7bdf4c681e
* NOISSUE - Update dependencies Signed-off-by: dusan <borovcanindusan1@gmail.com> * Update go.mod Signed-off-by: dusan <borovcanindusan1@gmail.com> --------- Signed-off-by: dusan <borovcanindusan1@gmail.com>
25 lines
543 B
Docker
25 lines
543 B
Docker
# Copyright (c) Abstract Machines
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM golang:1.25.3-alpine AS builder
|
|
ARG SVC
|
|
ARG GOARCH
|
|
ARG GOARM
|
|
ARG VERSION
|
|
ARG COMMIT
|
|
ARG TIME
|
|
|
|
WORKDIR /go/src/github.com/absmach/supermq
|
|
COPY . .
|
|
RUN apk update \
|
|
&& apk add make upx\
|
|
&& make $SVC \
|
|
&& upx build/$SVC \
|
|
&& mv build/$SVC /exe
|
|
|
|
FROM scratch
|
|
# Certificates are needed so that mailing util can work.
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
COPY --from=builder /exe /
|
|
ENTRYPOINT ["/exe"]
|