fix: correct playground dir path in dockerfile

This commit is contained in:
Max Richter
2025-10-05 23:53:54 +02:00
parent 5adc3a3cc1
commit 0970a662b8

View File

@@ -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"]