You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile.rootless 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #Build stage
  2. FROM golang:1.18-alpine3.16 AS build-env
  3. ARG GOPROXY
  4. ENV GOPROXY ${GOPROXY:-direct}
  5. ARG GITEA_VERSION
  6. ARG TAGS="sqlite sqlite_unlock_notify"
  7. ENV TAGS "bindata timetzdata $TAGS"
  8. ARG CGO_EXTRA_CFLAGS
  9. #Build deps
  10. RUN apk --no-cache add build-base git nodejs npm
  11. #Setup repo
  12. COPY . ${GOPATH}/src/code.gitea.io/gitea
  13. WORKDIR ${GOPATH}/src/code.gitea.io/gitea
  14. #Checkout version if set
  15. RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
  16. && make clean-all build
  17. # Begin env-to-ini build
  18. RUN go build contrib/environment-to-ini/environment-to-ini.go
  19. FROM alpine:3.16
  20. LABEL maintainer="maintainers@gitea.io"
  21. EXPOSE 2222 3000
  22. RUN apk --no-cache add \
  23. bash \
  24. ca-certificates \
  25. gettext \
  26. git \
  27. curl \
  28. gnupg
  29. RUN addgroup \
  30. -S -g 1000 \
  31. git && \
  32. adduser \
  33. -S -H -D \
  34. -h /var/lib/gitea/git \
  35. -s /bin/bash \
  36. -u 1000 \
  37. -G git \
  38. git
  39. RUN mkdir -p /var/lib/gitea /etc/gitea
  40. RUN chown git:git /var/lib/gitea /etc/gitea
  41. COPY docker/rootless /
  42. COPY --from=build-env --chown=root:root /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea
  43. COPY --from=build-env --chown=root:root /go/src/code.gitea.io/gitea/environment-to-ini /usr/local/bin/environment-to-ini
  44. RUN chmod 755 /usr/local/bin/docker-entrypoint.sh /usr/local/bin/docker-setup.sh /app/gitea/gitea /usr/local/bin/gitea /usr/local/bin/environment-to-ini
  45. #git:git
  46. USER 1000:1000
  47. ENV GITEA_WORK_DIR /var/lib/gitea
  48. ENV GITEA_CUSTOM /var/lib/gitea/custom
  49. ENV GITEA_TEMP /tmp/gitea
  50. ENV TMPDIR /tmp/gitea
  51. #TODO add to docs the ability to define the ini to load (usefull to test and revert a config)
  52. ENV GITEA_APP_INI /etc/gitea/app.ini
  53. ENV HOME "/var/lib/gitea/git"
  54. VOLUME ["/var/lib/gitea", "/etc/gitea"]
  55. WORKDIR /var/lib/gitea
  56. ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
  57. CMD []