This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
atsebay.t/Dockerfile

21 lines
356 B
Docker

FROM golang:alpine as gobuild
RUN apk add --no-cache go-bindata
WORKDIR /go/src/git.nemunai.re/atsebay.t
COPY *.go go.mod go.sum ./
COPY htdocs/ ./htdocs/
RUN go generate -v && \
go get -d -v && \
go build -v
FROM alpine
EXPOSE 8081
ENTRYPOINT ["atsebay.t"]
COPY --from=gobuild /go/src/git.nemunai.re/atsebay.t/atsebay.t /usr/bin/atsebay.t