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