mirror of
https://gitlab.com/arm-research/smarter/smarter-device-manager.git
synced 2024-11-21 18:23:34 +00:00
25 lines
674 B
Docker
25 lines
674 B
Docker
FROM golang:alpine as build
|
|
|
|
RUN apk update && apk upgrade && apk add tar ca-certificates build-base
|
|
|
|
ENV GOPATH /go
|
|
RUN go version
|
|
|
|
WORKDIR /arm.com/smarter-device-management
|
|
COPY . .
|
|
|
|
RUN echo $PATH;export CGO_LDFLAGS_ALLOW='-Wl,--unresolved-symbols=ignore-in-object-files' && \
|
|
go mod init arm.com/smarter-device-management && go mod tidy && go mod vendor && \
|
|
go build -ldflags="-s -w" .
|
|
|
|
FROM alpine
|
|
|
|
RUN apk update && apk upgrade
|
|
|
|
WORKDIR /root
|
|
|
|
COPY conf.yaml /root/config/conf.yaml
|
|
COPY --from=build /arm.com/smarter-device-management/smarter-device-management /usr/bin/smarter-device-management
|
|
|
|
CMD ["smarter-device-management","-logtostderr=true","-v=0"]
|