From 0970a662b88b2fb1aadf47d4fee13fef376fb92c Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 5 Oct 2025 23:53:54 +0200 Subject: [PATCH] fix: correct playground dir path in dockerfile --- server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Dockerfile b/server/Dockerfile index 85e3ffd..3121c60 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -10,7 +10,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \ FROM scratch WORKDIR /app COPY --from=build /out/server /app/server -COPY --from=build /src/playground/build /app/playground +COPY --from=build /src/playground /app/playground USER 65532:65532 EXPOSE 8080 CMD ["/app/server","-root=/app/data","-addr=:8080","-playground-root=/app/playground"]