From ff50274ff34e4342d8f6b9470345a1df341d8428 Mon Sep 17 00:00:00 2001 From: "Begley Brothers (Development)" <60454087+bbros-dev@users.noreply.github.com> Date: Thu, 22 Oct 2020 12:41:49 +1100 Subject: [PATCH] Dockerfile: Support socat use cases (#13208) * Dockerfile: Support socat use cases In some contexts it is necessary to provide access to Gitea via TCP ports and unix sockets. Gitea (`gitea web`) can be configured to listen for connections via unix-socket or TCP port, but not both. When Gitea is installed to the host this limitation can be worked around by installing socat on the host. When running Gitea from a container this limitation cannot be workaround. Add socat to Gitea container. * Removed version Co-authored-by: techknowlogick --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 8800738bde..efa7dfbabc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,7 @@ RUN apk --no-cache add \ openssh \ s6 \ sqlite \ + socat \ su-exec \ gnupg