🔍 a Search Engine for Yarn.social pods the Twtxt ecosystem
https://search.twtxt.net/
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.
62 lines
1.3 KiB
62 lines
1.3 KiB
# Build |
|
FROM golang:alpine AS build |
|
|
|
RUN apk add --no-cache -U build-base git make |
|
|
|
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 static assets |
|
COPY ./internal/static/css/* ./internal/static/css/ |
|
COPY ./internal/static/img/* ./internal/static/img/ |
|
COPY ./internal/static/js/* ./internal/static/js/ |
|
|
|
# Copy pages |
|
COPY ./internal/pages/* ./internal/pages/ |
|
|
|
# Copy templates |
|
COPY ./internal/templates/* ./internal/templates/ |
|
|
|
# Copy sources |
|
COPY *.go ./ |
|
COPY ./internal/*.go ./internal/ |
|
COPY ./internal/session/*.go ./internal/session/ |
|
COPY ./cmd/yarns/*.go ./cmd/yarns/ |
|
|
|
# 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 ca-certificates tzdata ffmpeg |
|
|
|
WORKDIR / |
|
VOLUME /data |
|
|
|
# force cgo resolver |
|
ENV GODEBUG=netdns=cgo |
|
|
|
COPY --from=build /src/yarns /yarns |
|
|
|
ENTRYPOINT ["/yarns"] |
|
CMD [""]
|
|
|