We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc3ff8c commit 2c28611Copy full SHA for 2c28611
components/proxy/Dockerfile
@@ -2,7 +2,15 @@
2
# Licensed under the GNU Affero General Public License (AGPL).
3
# See License.AGPL.txt in the project root for license information.
4
5
-FROM caddy:2.7.6-builder AS builder
+FROM caddy:2.7.6-builder AS withgo
6
+
7
+RUN go install golang.org/dl/go1.23.1@latest && \
8
+ go1.23.1 download && \
9
+ rm -rf /usr/local/go && \
10
+ mv /go /usr/local/go && \
11
+ mv /usr/local/go/bin/go1.23.1 /usr/local/go/bin/go
12
13
+FROM withgo AS builder
14
15
WORKDIR /plugins
16
0 commit comments