2018-03-12 15:29:13 +05:30
|
|
|
|
|
|
|
###################################
|
|
|
|
#Build stage
|
2019-12-27 06:22:32 +05:30
|
|
|
FROM golang:1.13-alpine3.11 AS build-env
|
2018-03-12 15:29:13 +05:30
|
|
|
|
2019-08-05 03:28:16 +05:30
|
|
|
ARG GOPROXY
|
|
|
|
ENV GOPROXY ${GOPROXY:-direct}
|
|
|
|
|
2018-03-12 15:29:13 +05:30
|
|
|
ARG GITEA_VERSION
|
2018-10-23 17:17:59 +05:30
|
|
|
ARG TAGS="sqlite sqlite_unlock_notify"
|
2018-03-12 15:29:13 +05:30
|
|
|
ENV TAGS "bindata $TAGS"
|
|
|
|
|
|
|
|
#Build deps
|
2019-12-05 09:11:38 +05:30
|
|
|
RUN apk --no-cache add build-base git nodejs npm
|
2018-03-12 15:29:13 +05:30
|
|
|
|
|
|
|
#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 \
|
2020-03-04 01:21:11 +05:30
|
|
|
&& make clean-all build
|
2018-03-12 15:29:13 +05:30
|
|
|
|
2019-12-27 06:22:32 +05:30
|
|
|
FROM alpine:3.11
|
2018-03-12 15:29:13 +05:30
|
|
|
LABEL maintainer="maintainers@gitea.io"
|
2015-08-25 10:11:01 +05:30
|
|
|
|
2016-11-28 18:43:18 +05:30
|
|
|
EXPOSE 22 3000
|
2015-08-25 10:11:01 +05:30
|
|
|
|
2017-05-08 16:39:20 +05:30
|
|
|
RUN apk --no-cache add \
|
2016-11-28 18:43:18 +05:30
|
|
|
bash \
|
2018-03-12 15:29:13 +05:30
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
gettext \
|
2016-11-28 18:43:18 +05:30
|
|
|
git \
|
|
|
|
linux-pam \
|
|
|
|
openssh \
|
2018-03-12 15:29:13 +05:30
|
|
|
s6 \
|
|
|
|
sqlite \
|
|
|
|
su-exec \
|
2017-06-30 11:40:37 +05:30
|
|
|
tzdata
|
2018-03-12 15:29:13 +05:30
|
|
|
|
2017-06-30 11:40:37 +05:30
|
|
|
RUN addgroup \
|
2016-11-28 22:07:31 +05:30
|
|
|
-S -g 1000 \
|
2016-11-28 18:43:18 +05:30
|
|
|
git && \
|
2016-11-28 21:52:22 +05:30
|
|
|
adduser \
|
|
|
|
-S -H -D \
|
|
|
|
-h /data/git \
|
2016-11-28 18:43:18 +05:30
|
|
|
-s /bin/bash \
|
|
|
|
-u 1000 \
|
2016-11-28 21:52:22 +05:30
|
|
|
-G git \
|
2016-12-15 14:46:55 +05:30
|
|
|
git && \
|
2017-08-13 11:48:05 +05:30
|
|
|
echo "git:$(dd if=/dev/urandom bs=24 count=1 status=none | base64)" | chpasswd
|
2015-08-17 12:40:23 +05:30
|
|
|
|
2017-06-30 11:40:37 +05:30
|
|
|
ENV USER git
|
|
|
|
ENV GITEA_CUSTOM /data/gitea
|
2016-01-25 18:37:37 +05:30
|
|
|
|
2015-10-02 15:26:36 +05:30
|
|
|
VOLUME ["/data"]
|
2016-11-28 18:43:18 +05:30
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint"]
|
|
|
|
CMD ["/bin/s6-svscan", "/etc/s6"]
|
|
|
|
|
2019-05-06 08:19:32 +05:30
|
|
|
COPY docker/root /
|
2018-03-12 15:29:13 +05:30
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea
|
2018-07-04 14:57:30 +05:30
|
|
|
RUN ln -s /app/gitea/gitea /usr/local/bin/gitea
|