docker: Remove unneeded build directory

This commit is contained in:
Elian Doran 2024-07-13 11:45:20 +03:00
parent d18bfb9d69
commit 7fd63e8064
No known key found for this signature in database

View File

@ -24,6 +24,7 @@ COPY server-package.json package.json
# Copy TypeScript build artifacts into the original directory structure.
RUN ls
RUN cp -R build/src/* src/.
RUN rm -r build
# Install app dependencies
RUN set -x \