First version
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-04-03 01:35:23 -07:00
parent 0e680ad189
commit e926800f44
5 changed files with 276 additions and 0 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM golang:1.18-alpine3.15 AS build
RUN apk --no-cache add git
WORKDIR /go/src/
ADD . /go/src/
RUN go install -v ./...
FROM alpine:3.15
USER root
RUN apk --no-cache add ca-certificates
RUN addgroup lc && adduser -D -G lc lc
WORKDIR /
COPY --from=build /go/bin/locationcode /bin/
USER lc
RUN mkdir /tmp/data
CMD ["/bin/locationcode", "-data-dir=/tmp/data"]