Files
m8sh/Dockerfile.rootless
T

89 lines
2.4 KiB
Docker
Raw Normal View History

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
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-05-08 06:17:20 +02:00
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
RUN --mount=type=cache,target=/root/.local/share/pnpm/store pnpm install --frozen-lockfile
COPY --exclude=.git/ . .
RUN make frontend
# Build backend for each target platform
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=""
ENV TAGS="bindata timetzdata $TAGS"
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 \
git
2020-11-01 01:58:22 +01:00
WORKDIR ${GOPATH}/src/gitea.dev
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/ . .
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
RUN --mount=type=cache,target="/root/.cache/go-build" \
2025-11-02 10:42:25 +01:00
--mount=type=bind,source=".git/",target=".git/" \
make backend
2020-11-01 01:58:22 +01:00
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
RUN chmod 755 /tmp/local/usr/local/bin/* \
/go/src/gitea.dev/gitea
2023-10-29 02:44:06 +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 \
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 /
COPY --from=build-env --chown=root:root /go/src/gitea.dev/gitea /app/gitea/gitea
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
ENV GITEA_WORK_DIR=/var/lib/gitea
ENV GITEA_CUSTOM=/var/lib/gitea/custom
ENV GITEA_TEMP=/tmp/gitea
ENV TMPDIR=/tmp/gitea
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)
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
# 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 []