vikunja/Dockerfile

43 lines
1.3 KiB
Docker
Raw Normal View History

# syntax=docker/dockerfile:1
# ┬─┐┬ ┐o┬ ┬─┐
# │─││ │││ │ │
# ┘─┘┘─┘┘┘─┘┘─┘
2018-09-08 13:08:33 +00:00
FROM --platform=$BUILDPLATFORM techknowlogick/xgo:go-1.20.x AS builder
RUN go install github.com/magefile/mage@latest && \
mv /go/bin/mage /usr/local/go/bin
2018-09-08 13:08:33 +00:00
WORKDIR /go/src/code.vikunja.io/api
COPY . ./
2018-09-08 13:08:33 +00:00
ARG TARGETOS TARGETARCH TARGETVARIANT
2018-09-08 13:08:33 +00:00
RUN mage build:clean && \
mage release:xgo "${TARGETOS}/${TARGETARCH}/${TARGETVARIANT}"
# ┬─┐┬ ┐┌┐┐┌┐┐┬─┐┬─┐
# │┬┘│ │││││││├─ │┬┘
# ┘└┘┘─┘┘└┘┘└┘┴─┘┘└┘
2019-06-02 14:37:10 +00:00
# The actual image
# Note: I wanted to use the scratch image here, but unfortunatly the go-sqlite bindings require cgo and
2019-11-24 17:36:43 +00:00
# because of this, the container would not start when I compiled the image without cgo.
FROM alpine:3.16 AS runner
2018-09-08 13:08:33 +00:00
LABEL maintainer="maintainers@vikunja.io"
WORKDIR /app/vikunja
ENTRYPOINT [ "/sbin/tini", "-g", "--", "/entrypoint.sh" ]
2023-02-01 17:39:57 +00:00
EXPOSE 3456
2018-09-08 13:08:33 +00:00
ENV VIKUNJA_SERVICE_ROOTPATH=/app/vikunja/
ENV PUID 1000
ENV PGID 1000
RUN apk --update --no-cache add tzdata tini shadow && \
addgroup vikunja && \
adduser -s /bin/sh -D -G vikunja vikunja -h /app/vikunja -H
COPY docker/entrypoint.sh /entrypoint.sh
RUN chmod 0755 /entrypoint.sh && mkdir files
COPY --from=builder /build/vikunja-* vikunja