12 lines
335 B
Docker
12 lines
335 B
Docker
FROM gitea/gitea:latest
|
|
|
|
# Add Tailscale Alpine repository
|
|
RUN echo 'https://pkgs.tailscale.com/stable/alpine/v3.19/main' >> /etc/apk/repositories \
|
|
&& apk add --no-cache tailscale
|
|
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
|
CMD ["gitea"]
|