mirror of
https://github.com/stevenhowes/osgrid-server.git
synced 2026-05-26 15:53:42 +01:00
15 lines
243 B
Docker
15 lines
243 B
Docker
FROM paulcager/go-base:latest as build
|
|
|
|
COPY * ./
|
|
RUN CGO_ENABLED=0 go install -v ./... && \
|
|
sha256sum /go/bin/osgrid-server
|
|
|
|
FROM scratch
|
|
WORKDIR /app
|
|
COPY --from=build /go/bin/osgrid-server .
|
|
EXPOSE 9090
|
|
|
|
CMD [ "/app/osgrid-server" ]
|
|
|
|
|