api/Dockerfile

52 lines
1.3 KiB
Docker
Raw Normal View History

2018-09-08 13:08:33 +00:00
2019-06-02 14:37:10 +00:00
##############
# Build stage
FROM golang:1-alpine3.12 AS build-env
2018-09-08 13:08:33 +00:00
ARG VIKUNJA_VERSION
ENV TAGS "sqlite"
ENV GO111MODULE=on
2018-09-08 13:08:33 +00:00
2019-06-02 14:37:10 +00:00
# Build deps
2018-09-08 13:18:57 +00:00
RUN apk --no-cache add build-base git
2018-09-08 13:08:33 +00:00
2019-06-02 14:37:10 +00:00
# Setup repo
2018-09-08 14:10:06 +00:00
COPY . ${GOPATH}/src/code.vikunja.io/api
WORKDIR ${GOPATH}/src/code.vikunja.io/api
2018-09-08 13:08:33 +00:00
2019-11-24 17:36:43 +00:00
# Checkout version if set
2018-09-08 13:08:33 +00:00
RUN if [ -n "${VIKUNJA_VERSION}" ]; then git checkout "${VIKUNJA_VERSION}"; fi \
2020-09-03 16:08:26 +00:00
&& go install github.com/magefile/mage \
&& mage build:clean build
2018-09-08 13:08:33 +00:00
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.12
2018-09-08 13:08:33 +00:00
LABEL maintainer="maintainers@vikunja.io"
2019-06-02 14:37:10 +00:00
WORKDIR /app/vikunja/
COPY --from=build-env /go/src/code.vikunja.io/api/vikunja .
ENV VIKUNJA_SERVICE_ROOTPATH=/app/vikunja/
# Dynamic permission changing stuff
ENV PUID 1000
ENV PGID 1000
RUN apk --no-cache add shadow && \
addgroup -g ${PGID} vikunja && \
adduser -s /bin/sh -D -G vikunja -u ${PUID} vikunja -h /app/vikunja -H && \
chown vikunja -R /app/vikunja
COPY run.sh /run.sh
# Fix time zone settings not working
RUN apk --no-cache add tzdata
2019-11-24 17:36:43 +00:00
# Files permissions
RUN mkdir /app/vikunja/files && \
chown -R vikunja /app/vikunja/files
VOLUME /app/vikunja/files
CMD ["/run.sh"]
2019-06-02 14:37:10 +00:00
EXPOSE 3456