jlelse
/
hugo-micropub
Archived
1
Fork 0
This repository has been archived on 2020-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
hugo-micropub/Dockerfile

10 lines
210 B
Docker
Raw Normal View History

FROM golang:1.14-alpine as build
2019-11-07 10:00:24 +00:00
ADD . /app
WORKDIR /app
RUN go build
2020-06-09 10:00:30 +00:00
FROM alpine:3.12
2019-12-22 18:31:22 +00:00
RUN apk add --no-cache tzdata ca-certificates
2019-11-07 10:00:24 +00:00
COPY --from=build /app/hugo-micropub /bin/
EXPOSE 5555
CMD ["hugo-micropub"]