Dockerfile.aarch64hub 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. FROM arm64v8/alpine:3.6
  2. ENV GOGS_CUSTOM /data/gogs
  3. ENV QEMU_EXECVE 1
  4. # For cross compile on dockerhub
  5. ################################
  6. COPY ./docker/aarch64/qemu-aarch64-static /usr/bin/
  7. COPY ./docker/aarch64/resin-xbuild /usr/bin/
  8. RUN [ "/usr/bin/qemu-aarch64-static", "/bin/sh", "-c", "ln -s resin-xbuild /usr/bin/cross-build-start; ln -s resin-xbuild /usr/bin/cross-build-end; ln /bin/sh /bin/sh.real" ]
  9. RUN [ "cross-build-start" ]
  10. # Prepare the container
  11. #######################
  12. # Install system utils & Gogs runtime dependencies
  13. ADD https://github.com/tianon/gosu/releases/download/1.9/gosu-arm64 /usr/sbin/gosu
  14. RUN chmod +x /usr/sbin/gosu \
  15. && apk --no-cache --no-progress add ca-certificates bash git linux-pam s6 curl openssh socat tzdata go
  16. COPY . /app/gogs/build
  17. WORKDIR /app/gogs/build
  18. RUN ./docker/build.sh \
  19. && ./docker/finalize.sh
  20. # Configure LibC Name Service
  21. COPY docker/nsswitch.conf /etc/nsswitch.conf
  22. # For cross compile on dockerhub
  23. ################################
  24. RUN [ "cross-build-end" ]
  25. # Configure Docker Container
  26. ############################
  27. VOLUME ["/data"]
  28. EXPOSE 22 3000
  29. ENTRYPOINT ["/app/gogs/docker/start.sh"]
  30. CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]