aboutsummaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorJoe Chen <jc@unknwon.io>2022-01-20 14:20:18 +0800
committerGitHub <noreply@github.com>2022-01-20 14:20:18 +0800
commit3a5ccc18cff06e51da185e130ede5b5b722d1589 (patch)
tree06610731f88684a38fdeb78f07674b3a1cd52741 /docker
parent82e5fd018b2cfdcbc9573a55b2f6215b33c0db76 (diff)
docker: delete Dockerfile.rpi (#6741)
[skip ci]
Diffstat (limited to 'docker')
1 files changed, 0 insertions, 45 deletions
diff --git a/docker/Dockerfile.rpi b/docker/Dockerfile.rpi
deleted file mode 100644
index 148e22b1..00000000
--- a/docker/Dockerfile.rpi
+++ /dev/null
@@ -1,45 +0,0 @@
-FROM arm32v7/golang:1.14-alpine3.14 AS binarybuilder
-RUN apk --no-cache --no-progress add --virtual \
- build-deps \
- build-base \
- git \
- linux-pam-dev
-
-WORKDIR /gogs.io/gogs
-COPY . .
-RUN make build TAGS="cert pam"
-
-FROM arm32v7/alpine:3.14
-RUN wget https://github.com/tianon/gosu/releases/download/1.12/gosu-armhf -O /usr/sbin/gosu \
- && chmod +x /usr/sbin/gosu \
- && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \
- && apk --no-cache --no-progress add \
- bash \
- ca-certificates \
- curl \
- git \
- linux-pam \
- openssh \
- s6 \
- shadow \
- socat \
- tzdata \
- rsync
-
-ENV GOGS_CUSTOM /data/gogs
-
-# Configure LibC Name Service
-COPY docker/nsswitch.conf /etc/nsswitch.conf
-
-WORKDIR /app/gogs
-COPY docker ./docker
-COPY --from=binarybuilder /gogs.io/gogs/gogs .
-
-RUN ./docker/finalize.sh
-
-# Configure Docker Container
-VOLUME ["/data", "/backup"]
-EXPOSE 22 3000
-HEALTHCHECK CMD (nc -z -w 3 localhost 22 && curl -o /dev/null -sS http://localhost:3000/healthcheck) || exit 1
-ENTRYPOINT ["/app/gogs/docker/start.sh"]
-CMD ["/bin/s6-svscan", "/app/gogs/docker/s6/"]