📕 yarn is a Self-Hosted, Twitter™-like Decentralised micro-Blogging platform. No ads, no tracking, your content, your data!
https://yarn.social/
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.
82 lines
1.9 KiB
82 lines
1.9 KiB
# Build |
|
FROM golang:alpine AS build |
|
|
|
RUN apk add --no-cache -U build-base git make ffmpeg-dev |
|
|
|
RUN mkdir -p /src |
|
|
|
WORKDIR /src |
|
|
|
# Copy Makefile |
|
COPY Makefile ./ |
|
|
|
# Install deps |
|
RUN make deps |
|
|
|
# Copy go.mod and go.sum and install and cache dependencies |
|
COPY go.mod . |
|
COPY go.sum . |
|
|
|
# Copy default logo |
|
COPY ./internal/logo.svg ./internal/ |
|
|
|
# Copy static assets |
|
COPY ./internal/theme/static/css/* ./internal/theme/static/css/ |
|
COPY ./internal/theme/static/img/* ./internal/theme/static/img/ |
|
COPY ./internal/theme/static/js/* ./internal/theme/static/js/ |
|
|
|
# Copy pages |
|
COPY ./internal/pages/* ./internal/pages/ |
|
|
|
# Copy templates |
|
COPY ./internal/theme/templates/* ./internal/theme/templates/ |
|
|
|
# Copy langs (localization / i18n) |
|
COPY ./internal/langs/* ./internal/langs/ |
|
|
|
# Copy sources |
|
COPY *.go ./ |
|
COPY ./internal/*.go ./internal/ |
|
COPY ./internal/auth/*.go ./internal/auth/ |
|
COPY ./internal/session/*.go ./internal/session/ |
|
COPY ./internal/passwords/*.go ./internal/passwords/ |
|
COPY ./internal/indieweb/*.go ./internal/indieweb/ |
|
COPY ./cmd/yarnd/*.go ./cmd/yarnd/ |
|
|
|
# Version/Commit (there there is no .git in Docker build context) |
|
# NOTE: This is fairly low down in the Dockerfile instructions so |
|
# we don't break the Docker build cache just be changing |
|
# unrelated files that actually haven't changed but caused the |
|
# COMMIT value to change. |
|
ARG VERSION="0.0.0" |
|
ARG COMMIT="HEAD" |
|
|
|
# Build server binary |
|
RUN make server VERSION=$VERSION COMMIT=$COMMIT |
|
|
|
# Runtime |
|
FROM alpine:latest |
|
|
|
RUN apk --no-cache -U add su-exec shadow ca-certificates tzdata ffmpeg |
|
|
|
ENV PUID=1000 |
|
ENV PGID=1000 |
|
|
|
RUN addgroup -g "${PGID}" yarnd && \ |
|
adduser -D -H -G yarnd -h /var/empty -u "${PUID}" yarnd && \ |
|
mkdir -p /data && chown -R yarnd:yarnd /data |
|
|
|
VOLUME /data |
|
|
|
WORKDIR / |
|
|
|
# force cgo resolver |
|
ENV GODEBUG=netdns=cgo |
|
|
|
COPY --from=build /src/yarnd /usr/local/bin/yarnd |
|
COPY --from=build /src/internal/theme /theme |
|
|
|
COPY .dockerfiles/entrypoint.sh /init |
|
|
|
ENTRYPOINT ["/init"] |
|
CMD ["yarnd"]
|
|
|