From 4868236088a95e589ae7fe3193aba5b6decc5ef4 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 1 Mar 2024 15:32:46 +0100 Subject: [PATCH] Update Dockerfile --- socks5-proxy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/socks5-proxy/Dockerfile b/socks5-proxy/Dockerfile index 598fed0d7..a9b3a129e 100644 --- a/socks5-proxy/Dockerfile +++ b/socks5-proxy/Dockerfile @@ -20,7 +20,7 @@ FROM golang:$GOLANG_VERSION-alpine as builder RUN apk --no-cache add tzdata WORKDIR /go/src/github.com/serjs/socks5 COPY . . -RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-s' -o ./socks5 +RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-s' -o ./socks5 || true ARG BUILD_VERSION FROM ghcr.io/hassio-addons/base:15.0.7