You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blog/Dockerfile

12 lines
181 B

FROM golang:1.19
ENV GOPATH=/go
ENV GOBIN=/go/bin
COPY . /go/src/blog
WORKDIR /go/src/blog
RUN make public
FROM nginx
COPY --from=build /go/src/blog/public /usr/share/nginx/html