2018-03-12 03:59:13 -06:00
|
|
|
|
|
|
|
###################################
|
|
|
|
#Build stage
|
2019-06-20 17:47:51 -06:00
|
|
|
FROM golang:1.12-alpine3.10 AS build-env
|
2018-03-12 03:59:13 -06:00
|
|
|
|
|
|
|
ARG GITEA_VERSION
|
2018-10-23 05:47:59 -06:00
|
|
|
ARG TAGS="sqlite sqlite_unlock_notify"
|
2018-03-12 03:59:13 -06:00
|
|
|
ENV TAGS "bindata $TAGS"
|
|
|
|
|
|
|
|
#Build deps
|
|
|
|
RUN apk --no-cache add build-base git
|
|
|
|
|
|
|
|
#Setup repo
|
|
|
|
COPY . ${GOPATH}/src/code.gitea.io/gitea
|
|
|
|
WORKDIR ${GOPATH}/src/code.gitea.io/gitea
|
|
|
|
|
|
|
|
#Checkout version if set
|
|
|
|
RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
|
|
|
|
&& make clean generate build
|
|
|
|
|
2019-06-20 17:47:51 -06:00
|
|
|
FROM alpine:3.10
|
2018-03-12 03:59:13 -06:00
|
|
|
LABEL maintainer="maintainers@gitea.io"
|
2015-08-24 22:41:01 -06:00
|
|
|
|
2016-11-28 06:13:18 -07:00
|
|
|
EXPOSE 22 3000
|
2015-08-24 22:41:01 -06:00
|
|
|
|
2017-05-08 05:09:20 -06:00
|
|
|
RUN apk --no-cache add \
|
2016-11-28 06:13:18 -07:00
|
|
|
bash \
|
2018-03-12 03:59:13 -06:00
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
gettext \
|
2016-11-28 06:13:18 -07:00
|
|
|
git \
|
|
|
|
linux-pam \
|
|
|
|
openssh \
|
2018-03-12 03:59:13 -06:00
|
|
|
s6 \
|
|
|
|
sqlite \
|
|
|
|
su-exec \
|
2017-06-30 00:10:37 -06:00
|
|
|
tzdata
|
2018-03-12 03:59:13 -06:00
|
|
|
|
2017-06-30 00:10:37 -06:00
|
|
|
RUN addgroup \
|
2016-11-28 09:37:31 -07:00
|
|
|
-S -g 1000 \
|
2016-11-28 06:13:18 -07:00
|
|
|
git && \
|
2016-11-28 09:22:22 -07:00
|
|
|
adduser \
|
|
|
|
-S -H -D \
|
|
|
|
-h /data/git \
|
2016-11-28 06:13:18 -07:00
|
|
|
-s /bin/bash \
|
|
|
|
-u 1000 \
|
2016-11-28 09:22:22 -07:00
|
|
|
-G git \
|
2016-12-15 02:16:55 -07:00
|
|
|
git && \
|
2017-08-13 00:18:05 -06:00
|
|
|
echo "git:$(dd if=/dev/urandom bs=24 count=1 status=none | base64)" | chpasswd
|
2015-08-17 01:10:23 -06:00
|
|
|
|
2017-06-30 00:10:37 -06:00
|
|
|
ENV USER git
|
|
|
|
ENV GITEA_CUSTOM /data/gitea
|
2016-01-25 06:07:37 -07:00
|
|
|
|
2015-10-02 03:56:36 -06:00
|
|
|
VOLUME ["/data"]
|
2016-11-28 06:13:18 -07:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint"]
|
|
|
|
CMD ["/bin/s6-svscan", "/etc/s6"]
|
|
|
|
|
2019-05-05 20:49:32 -06:00
|
|
|
COPY docker/root /
|
2018-03-12 03:59:13 -06:00
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea
|
2018-07-04 03:27:30 -06:00
|
|
|
RUN ln -s /app/gitea/gitea /usr/local/bin/gitea
|