aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.aarch64
diff options
context:
space:
mode:
authoratzoum <atzoum@gmail.com>2017-01-24 01:31:24 +0200
committer无闻 <u@gogs.io>2017-01-23 18:31:24 -0500
commit4e967bc765cecb165a49cdb956c83f34230ed6c6 (patch)
tree3bb06c8f0128016a4d7af4d10b060ff07281b957 /Dockerfile.aarch64
parent64788ffff6b738f3ece815a6e6ec066bba7c9a2b (diff)
Dockerfile for aarch64 (odroid c2 & pine64) (#4018)
Diffstat (limited to 'Dockerfile.aarch64')
-rw-r--r--Dockerfile.aarch6422
1 files changed, 22 insertions, 0 deletions
diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64
new file mode 100644
index 00000000..b4f58d86
--- /dev/null
+++ b/Dockerfile.aarch64
@@ -0,0 +1,22 @@
+FROM aarch64/alpine:3.5
+MAINTAINER atzoum@gmail.com
+
+# Install system utils & Gogs runtime dependencies
+ADD https://github.com/tianon/gosu/releases/download/1.9/gosu-arm64 /usr/sbin/gosu
+RUN chmod +x /usr/sbin/gosu \
+ && apk --no-cache --no-progress add ca-certificates bash git linux-pam s6 curl openssh socat tzdata
+
+ENV GOGS_CUSTOM /data/gogs
+
+COPY . /app/gogs/
+WORKDIR /app/gogs/
+RUN ./docker/build.sh
+
+# Configure LibC Name Service
+COPY docker/nsswitch.conf /etc/nsswitch.conf
+
+# Configure Docker Container
+VOLUME ["/data"]
+EXPOSE 22 3000
+ENTRYPOINT ["docker/start.sh"]
+CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]