2023-10-28 19:44:06 -06:00
|
|
|
# Build stage
|
2024-05-23 06:36:34 -06:00
|
|
|
FROM docker.io/library/golang:1.22-alpine3.20 AS build-env
|
2018-03-12 03:59:13 -06:00
|
|
|
|
2019-08-04 15:58:16 -06:00
|
|
|
ARG GOPROXY
|
2024-06-23 18:53:37 -06:00
|
|
|
ENV GOPROXY=${GOPROXY:-direct}
|
2019-08-04 15:58:16 -06:00
|
|
|
|
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"
|
2024-06-23 18:53:37 -06:00
|
|
|
ENV TAGS="bindata timetzdata $TAGS"
|
2020-06-06 15:42:32 -06:00
|
|
|
ARG CGO_EXTRA_CFLAGS
|
2018-03-12 03:59:13 -06:00
|
|
|
|
2023-10-28 19:44:06 -06:00
|
|
|
# Build deps
|
|
|
|
RUN apk --no-cache add \
|
|
|
|
build-base \
|
|
|
|
git \
|
|
|
|
nodejs \
|
|
|
|
npm \
|
|
|
|
&& rm -rf /var/cache/apk/*
|
2018-03-12 03:59:13 -06:00
|
|
|
|
2023-10-28 19:44:06 -06:00
|
|
|
# Setup repo
|
2018-03-12 03:59:13 -06:00
|
|
|
COPY . ${GOPATH}/src/code.gitea.io/gitea
|
|
|
|
WORKDIR ${GOPATH}/src/code.gitea.io/gitea
|
|
|
|
|
2023-10-28 19:44:06 -06:00
|
|
|
# Checkout version if set
|
2018-03-12 03:59:13 -06:00
|
|
|
RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
|
2020-03-03 12:51:11 -07:00
|
|
|
&& make clean-all build
|
2018-03-12 03:59:13 -06:00
|
|
|
|
2021-02-23 12:21:44 -07:00
|
|
|
# Begin env-to-ini build
|
|
|
|
RUN go build contrib/environment-to-ini/environment-to-ini.go
|
|
|
|
|
2023-10-28 19:44:06 -06:00
|
|
|
# Copy local files
|
|
|
|
COPY docker/root /tmp/local
|
|
|
|
|
|
|
|
# Set permissions
|
|
|
|
RUN chmod 755 /tmp/local/usr/bin/entrypoint \
|
|
|
|
/tmp/local/usr/local/bin/gitea \
|
|
|
|
/tmp/local/etc/s6/gitea/* \
|
|
|
|
/tmp/local/etc/s6/openssh/* \
|
|
|
|
/tmp/local/etc/s6/.s6-svscan/* \
|
|
|
|
/go/src/code.gitea.io/gitea/gitea \
|
|
|
|
/go/src/code.gitea.io/gitea/environment-to-ini
|
|
|
|
RUN chmod 644 /go/src/code.gitea.io/gitea/contrib/autocompletion/bash_autocomplete
|
|
|
|
|
2024-05-23 06:36:34 -06:00
|
|
|
FROM docker.io/library/alpine:3.20
|
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 \
|
2023-10-28 19:44:06 -06:00
|
|
|
gnupg \
|
|
|
|
&& rm -rf /var/cache/apk/*
|
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 && \
|
2021-04-29 11:48:52 -06:00
|
|
|
echo "git:*" | chpasswd -e
|
2015-08-17 01:10:23 -06:00
|
|
|
|
2024-06-23 18:53: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"]
|
|
|
|
|
2023-10-28 19:44:06 -06:00
|
|
|
COPY --from=build-env /tmp/local /
|
2018-03-12 03:59:13 -06:00
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea
|
2021-02-23 12:21:44 -07:00
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/environment-to-ini /usr/local/bin/environment-to-ini
|
2023-02-21 10:32:24 -07:00
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/contrib/autocompletion/bash_autocomplete /etc/profile.d/gitea_bash_autocomplete.sh
|