2022-01-20 03:25:17 +05:30
|
|
|
#Build stage
|
2022-08-07 21:55:03 +05:30
|
|
|
FROM golang:1.19-alpine3.16 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"
|
2020-09-28 04:22:22 +05:30
|
|
|
ENV TAGS "bindata timetzdata $TAGS"
|
2020-06-07 03:12:32 +05:30
|
|
|
ARG CGO_EXTRA_CFLAGS
|
2018-03-12 15:29:13 +05:30
|
|
|
|
|
|
|
#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
|
|
|
|
2021-02-24 00:51:44 +05:30
|
|
|
# Begin env-to-ini build
|
|
|
|
RUN go build contrib/environment-to-ini/environment-to-ini.go
|
|
|
|
|
2022-05-25 10:12:28 +05:30
|
|
|
FROM alpine:3.16
|
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 \
|
2020-05-11 02:11:34 +05:30
|
|
|
gnupg
|
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 && \
|
2021-04-29 23:18:52 +05:30
|
|
|
echo "git:*" | chpasswd -e
|
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
|
2021-02-24 00:51:44 +05:30
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/environment-to-ini /usr/local/bin/environment-to-ini
|
2021-12-01 23:38:27 +05:30
|
|
|
RUN chmod 755 /usr/bin/entrypoint /app/gitea/gitea /usr/local/bin/gitea /usr/local/bin/environment-to-ini
|
2021-10-26 00:02:03 +05:30
|
|
|
RUN chmod 755 /etc/s6/gitea/* /etc/s6/openssh/* /etc/s6/.s6-svscan/*
|