From 06cb53c5f8a4d6a441eff05026d9588072314c27 Mon Sep 17 00:00:00 2001 From: dcorral Date: Thu, 6 Nov 2025 20:45:03 +0100 Subject: [PATCH] copy folders in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1bd7cdc..0d454e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN go build -o sshserver main.go FROM alpine:latest -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates && mkdir -p /app COPY --from=builder /app/sshserver /usr/local/bin/sshserver