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