2018-03-12 04:59:13 -05:00
|
|
|
|
|
|
|
###################################
|
|
|
|
#Build stage
|
2021-08-17 07:31:28 -05:00
|
|
|
FROM golang:1.17-alpine3.13 AS build-env
|
2018-03-12 04:59:13 -05:00
|
|
|
|
2019-08-04 16:58:16 -05:00
|
|
|
ARG GOPROXY
|
|
|
|
ENV GOPROXY ${GOPROXY:-direct}
|
|
|
|
|
2018-03-12 04:59:13 -05:00
|
|
|
ARG GITEA_VERSION
|
2018-10-23 06:47:59 -05:00
|
|
|
ARG TAGS="sqlite sqlite_unlock_notify"
|
2020-09-27 17:52:22 -05:00
|
|
|
ENV TAGS "bindata timetzdata $TAGS"
|
2020-06-06 16:42:32 -05:00
|
|
|
ARG CGO_EXTRA_CFLAGS
|
2018-03-12 04:59:13 -05:00
|
|
|
|
|
|
|
#Build deps
|
2019-12-04 21:41:38 -06:00
|
|
|
RUN apk --no-cache add build-base git nodejs npm
|
2018-03-12 04:59:13 -05:00
|
|
|
|
|
|
|
#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-03 13:51:11 -06:00
|
|
|
&& make clean-all build
|
2018-03-12 04:59:13 -05:00
|
|
|
|
2021-02-23 13:21:44 -06:00
|
|
|
# Begin env-to-ini build
|
|
|
|
RUN go build contrib/environment-to-ini/environment-to-ini.go
|
|
|
|
|
2021-07-15 20:54:39 -05:00
|
|
|
FROM alpine:3.13
|
2018-03-12 04:59:13 -05:00
|
|
|
LABEL maintainer="maintainers@gitea.io"
|
2015-08-24 23:41:01 -05:00
|
|
|
|
2016-11-28 07:13:18 -06:00
|
|
|
EXPOSE 22 3000
|
2015-08-24 23:41:01 -05:00
|
|
|
|
2017-05-08 06:09:20 -05:00
|
|
|
RUN apk --no-cache add \
|
2016-11-28 07:13:18 -06:00
|
|
|
bash \
|
2018-03-12 04:59:13 -05:00
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
gettext \
|
2016-11-28 07:13:18 -06:00
|
|
|
git \
|
|
|
|
linux-pam \
|
|
|
|
openssh \
|
2018-03-12 04:59:13 -05:00
|
|
|
s6 \
|
|
|
|
sqlite \
|
|
|
|
su-exec \
|
2020-05-10 15:41:34 -05:00
|
|
|
gnupg
|
2018-03-12 04:59:13 -05:00
|
|
|
|
2017-06-30 01:10:37 -05:00
|
|
|
RUN addgroup \
|
2016-11-28 10:37:31 -06:00
|
|
|
-S -g 1000 \
|
2016-11-28 07:13:18 -06:00
|
|
|
git && \
|
2016-11-28 10:22:22 -06:00
|
|
|
adduser \
|
|
|
|
-S -H -D \
|
|
|
|
-h /data/git \
|
2016-11-28 07:13:18 -06:00
|
|
|
-s /bin/bash \
|
|
|
|
-u 1000 \
|
2016-11-28 10:22:22 -06:00
|
|
|
-G git \
|
2016-12-15 03:16:55 -06:00
|
|
|
git && \
|
2021-04-29 12:48:52 -05:00
|
|
|
echo "git:*" | chpasswd -e
|
2015-08-17 02:10:23 -05:00
|
|
|
|
2017-06-30 01:10:37 -05:00
|
|
|
ENV USER git
|
|
|
|
ENV GITEA_CUSTOM /data/gitea
|
2016-01-25 07:07:37 -06:00
|
|
|
|
2015-10-02 04:56:36 -05:00
|
|
|
VOLUME ["/data"]
|
2016-11-28 07:13:18 -06:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint"]
|
|
|
|
CMD ["/bin/s6-svscan", "/etc/s6"]
|
|
|
|
|
2019-05-05 21:49:32 -05:00
|
|
|
COPY docker/root /
|
2018-03-12 04:59:13 -05:00
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea
|
2021-02-23 13:21:44 -06:00
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/environment-to-ini /usr/local/bin/environment-to-ini
|
2021-10-25 13:32:03 -05:00
|
|
|
RUN chmod 755 /usr/bin/entrypoint /app/gitea/gitea /usr/local/bin/environment-to-ini
|
|
|
|
RUN chmod 755 /etc/s6/gitea/* /etc/s6/openssh/* /etc/s6/.s6-svscan/*
|
2018-07-04 04:27:30 -05:00
|
|
|
RUN ln -s /app/gitea/gitea /usr/local/bin/gitea
|