vikunja/Dockerfile

37 lines
955 B
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-alpine AS build-env
2018-09-08 13:08:33 +00:00
ARG VIKUNJA_VERSION
ENV TAGS "sqlite"
ENV GO111MODULE=on
ENV GOFLAGS=-mod=vendor
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
#Checkout version if set
RUN if [ -n "${VIKUNJA_VERSION}" ]; then git checkout "${VIKUNJA_VERSION}"; fi \
&& make clean generate 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
# for whatever reason, the container would not start when I compiled the image without cgo.
FROM alpine:3.9
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 .
RUN chown nobody:nogroup -R /app/vikunja
ENV VIKUNJA_SERVICE_ROOTPATH=/app/vikunja/
2019-06-02 14:37:10 +00:00
USER nobody:nogroup
CMD ["/app/vikunja/vikunja"]
EXPOSE 3456