2025-11-02 10:42:25 +01:00
|
|
|
# syntax=docker/dockerfile:1
|
2026-03-29 12:24:30 +02:00
|
|
|
# Build frontend on the native platform to avoid QEMU-related issues with nodejs ecosystem
|
2026-02-17 09:25:07 +01:00
|
|
|
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.26-alpine3.23 AS frontend-build
|
|
|
|
|
RUN apk --no-cache add build-base git nodejs pnpm
|
|
|
|
|
WORKDIR /src
|
2026-03-08 16:58:21 +01:00
|
|
|
COPY package.json pnpm-lock.yaml .npmrc ./
|
|
|
|
|
RUN --mount=type=cache,target=/root/.local/share/pnpm/store pnpm install --frozen-lockfile
|
2026-02-17 09:25:07 +01:00
|
|
|
COPY --exclude=.git/ . .
|
2026-03-08 16:58:21 +01:00
|
|
|
RUN make frontend
|
2026-02-17 09:25:07 +01:00
|
|
|
|
|
|
|
|
# Build backend for each target platform
|
2026-02-11 18:37:13 +01:00
|
|
|
FROM docker.io/library/golang:1.26-alpine3.23 AS build-env
|
2020-11-01 01:58:22 +01:00
|
|
|
|
|
|
|
|
ARG GITEA_VERSION
|
|
|
|
|
ARG TAGS="sqlite sqlite_unlock_notify"
|
2024-06-21 17:08:42 +02:00
|
|
|
ENV TAGS="bindata timetzdata $TAGS"
|
2021-10-25 19:32:03 +01:00
|
|
|
ARG CGO_EXTRA_CFLAGS
|
2020-11-01 01:58:22 +01:00
|
|
|
|
2025-11-02 10:42:25 +01:00
|
|
|
# Build deps
|
2023-10-29 02:44:06 +01:00
|
|
|
RUN apk --no-cache add \
|
|
|
|
|
build-base \
|
2026-02-17 09:25:07 +01:00
|
|
|
git
|
2020-11-01 01:58:22 +01:00
|
|
|
|
|
|
|
|
WORKDIR ${GOPATH}/src/code.gitea.io/gitea
|
2026-03-08 16:58:21 +01:00
|
|
|
COPY go.mod go.sum ./
|
|
|
|
|
RUN go mod download
|
2025-11-02 10:42:25 +01:00
|
|
|
# See the comments in Dockerfile
|
|
|
|
|
COPY --exclude=.git/ . .
|
2026-02-17 09:25:07 +01:00
|
|
|
COPY --from=frontend-build /src/public/assets public/assets
|
2020-11-01 01:58:22 +01:00
|
|
|
|
2025-11-02 10:42:25 +01:00
|
|
|
# Build gitea, .git mount is required for version data
|
2026-03-08 16:58:21 +01:00
|
|
|
RUN --mount=type=cache,target="/root/.cache/go-build" \
|
2025-11-02 10:42:25 +01:00
|
|
|
--mount=type=bind,source=".git/",target=".git/" \
|
2026-02-17 09:25:07 +01:00
|
|
|
make backend
|
2020-11-01 01:58:22 +01:00
|
|
|
|
2026-05-22 16:51:17 +01:00
|
|
|
# Build runner (same image, like Lightsail)
|
|
|
|
|
WORKDIR ${GOPATH}/src/code.gitea.io/gitea/runner
|
|
|
|
|
COPY runner/go.mod runner/go.sum ./
|
|
|
|
|
RUN go mod download
|
|
|
|
|
COPY runner/ .
|
|
|
|
|
RUN --mount=type=cache,target="/root/.cache/go-build" \
|
|
|
|
|
CGO_ENABLED=0 go build -ldflags '-s -w' -o /go/src/code.gitea.io/gitea/act_runner .
|
|
|
|
|
WORKDIR ${GOPATH}/src/code.gitea.io/gitea
|
|
|
|
|
|
2023-10-29 02:44:06 +01:00
|
|
|
COPY docker/rootless /tmp/local
|
|
|
|
|
|
2025-11-02 10:42:25 +01:00
|
|
|
# Set permissions for builds that made under windows which strips the executable bit from file
|
2025-10-25 10:54:55 +08:00
|
|
|
RUN chmod 755 /tmp/local/usr/local/bin/* \
|
|
|
|
|
/go/src/code.gitea.io/gitea/gitea
|
2023-10-29 02:44:06 +01:00
|
|
|
|
2026-02-01 10:36:43 +01:00
|
|
|
FROM docker.io/library/alpine:3.23 AS gitea-rootless
|
2020-11-01 01:58:22 +01:00
|
|
|
|
|
|
|
|
EXPOSE 2222 3000
|
|
|
|
|
|
|
|
|
|
RUN apk --no-cache add \
|
|
|
|
|
bash \
|
|
|
|
|
ca-certificates \
|
2022-12-04 12:12:06 +01:00
|
|
|
dumb-init \
|
2020-11-01 01:58:22 +01:00
|
|
|
gettext \
|
|
|
|
|
git \
|
2021-05-21 06:03:41 +02:00
|
|
|
curl \
|
2023-10-29 02:44:06 +01:00
|
|
|
gnupg \
|
2025-11-02 10:42:25 +01:00
|
|
|
openssh-keygen
|
2020-11-01 01:58:22 +01:00
|
|
|
|
|
|
|
|
RUN addgroup \
|
|
|
|
|
-S -g 1000 \
|
|
|
|
|
git && \
|
|
|
|
|
adduser \
|
|
|
|
|
-S -H -D \
|
|
|
|
|
-h /var/lib/gitea/git \
|
|
|
|
|
-s /bin/bash \
|
|
|
|
|
-u 1000 \
|
|
|
|
|
-G git \
|
2021-04-29 19:48:52 +02:00
|
|
|
git
|
2020-11-01 01:58:22 +01:00
|
|
|
|
|
|
|
|
RUN mkdir -p /var/lib/gitea /etc/gitea
|
|
|
|
|
RUN chown git:git /var/lib/gitea /etc/gitea
|
|
|
|
|
|
2023-10-29 02:44:06 +01:00
|
|
|
COPY --from=build-env /tmp/local /
|
2021-12-01 18:08:27 +00:00
|
|
|
COPY --from=build-env --chown=root:root /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea
|
2026-05-22 16:51:17 +01:00
|
|
|
COPY --from=build-env --chown=root:root /go/src/code.gitea.io/gitea/act_runner /app/gitea/act_runner
|
2020-11-01 01:58:22 +01:00
|
|
|
|
2023-10-29 02:44:06 +01:00
|
|
|
# git:git
|
2021-07-09 09:08:22 -05:00
|
|
|
USER 1000:1000
|
2024-06-21 17:08:42 +02:00
|
|
|
ENV GITEA_WORK_DIR=/var/lib/gitea
|
|
|
|
|
ENV GITEA_CUSTOM=/var/lib/gitea/custom
|
|
|
|
|
ENV GITEA_TEMP=/tmp/gitea
|
|
|
|
|
ENV TMPDIR=/tmp/gitea
|
2021-06-06 00:04:56 +02:00
|
|
|
|
2023-10-29 02:44:06 +01:00
|
|
|
# TODO add to docs the ability to define the ini to load (useful to test and revert a config)
|
2024-06-21 17:08:42 +02:00
|
|
|
ENV GITEA_APP_INI=/etc/gitea/app.ini
|
|
|
|
|
ENV HOME="/var/lib/gitea/git"
|
2020-11-01 01:58:22 +01:00
|
|
|
VOLUME ["/var/lib/gitea", "/etc/gitea"]
|
|
|
|
|
WORKDIR /var/lib/gitea
|
|
|
|
|
|
2026-01-30 10:23:38 +08:00
|
|
|
# HINT: HEALTH-CHECK-ENDPOINT: don't use HEALTHCHECK, search this hint keyword for more information
|
2022-12-04 12:12:06 +01:00
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--", "/usr/local/bin/docker-entrypoint.sh"]
|
2020-11-01 01:58:22 +01:00
|
|
|
CMD []
|