This repository has been archived on 2023-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
helix/internal/stacks/templates/gitea/Dockerfile.tmpl

16 lines
321 B
Cheetah
Raw Normal View History

2021-06-30 06:03:02 +01:00
{{/* vim: set ft=dockerfile : */}}
ARG GITEA_VERSION={{ .Version }}
FROM gitea/gitea:${GITEA_VERSION}
ENV USER_UID=1000 \
USER_GID=1000 \
GITEA_CUSTOM=/helix/gitea/custom
ADD files app.ini /helix/gitea/custom/app.ini
RUN chown -R ${USER_ID}:${USER_GID} /helix
EXPOSE {{ .App.HttpPort }} {{ .App.SshPort }}