This is my new blog CMS
https://jlelse.blog
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.
20 lines
637 B
20 lines
637 B
FROM golang:1.16-alpine3.13 as build
|
|
WORKDIR /app
|
|
RUN apk add --no-cache git gcc musl-dev
|
|
RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main sqlite-dev
|
|
ADD *.go go.mod go.sum /app/
|
|
RUN go build --tags "libsqlite3 linux sqlite_fts5"
|
|
|
|
FROM alpine:3.13
|
|
WORKDIR /app
|
|
VOLUME /app/config
|
|
VOLUME /app/data
|
|
EXPOSE 80
|
|
EXPOSE 443
|
|
EXPOSE 8080
|
|
CMD ["GoBlog"]
|
|
HEALTHCHECK --interval=1m --timeout=10s CMD GoBlog healthcheck
|
|
RUN apk add --no-cache tzdata tor
|
|
RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main sqlite-dev
|
|
COPY templates/ /app/templates/
|
|
COPY --from=build /app/GoBlog /bin/
|