Browse Source

添加makefile

liuyuqi-dellpc 6 years ago
parent
commit
d9c41bc339
3 changed files with 24 additions and 0 deletions
  1. 24 0
      Dockerfile
  2. 0 0
      Makefile
  3. 0 0
      docker/start.sh

+ 24 - 0
Dockerfile

@@ -0,0 +1,24 @@
+FROM alpine:3.5
+
+# Install system utils & Gogs runtime dependencies
+ADD https://github.com/tianon/gosu/releases/download/1.9/gosu-amd64 /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 GO_NOTE_CUSTOM /data/go-note
+
+COPY . /app/gogs/build
+WORKDIR /app/gogs/build
+
+RUN    ./docker/build-go.sh \
+    && ./docker/build.sh \
+    && ./docker/finalize.sh
+
+# Configure LibC Name Service
+COPY docker/nsswitch.conf /etc/nsswitch.conf
+
+# Configure Docker Container
+VOLUME ["/data"]
+EXPOSE 22 3000
+ENTRYPOINT ["/app/gogs/docker/start.sh"]
+CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]

+ 0 - 0
Makefile


+ 0 - 0
docker/start.sh