gogs.yml 254 B

123456789
  1. FROM debian:latest
  2. RUN apt update && apt dist-upgrade -y
  3. RUN apt install git -y
  4. COPY gogs/gogs.sh /root
  5. RUN groupadd -g 1002 gogs
  6. RUN useradd -g gogs -u 1114 -s /bin/false -d /home/gogs gogs
  7. RUN chmod a+x /root/gogs.sh
  8. CMD ['/bin/bash','/root/gogs.sh']