b68/packages/config-store/Dockerfile

13 lines
96 B
Docker

FROM golang:alpine3.16
WORKDIR /app
COPY . .
RUN go get
RUN go build
CMD ["config-store"]