Fix: Dockerfile - Rust building twice

This commit is contained in:
Anthial 2023-08-02 20:49:00 +02:00
parent 537d63a11e
commit 8404480e57

View file

@ -40,7 +40,7 @@ RUN yarn workspace native-utils build
# Copy in the rest of the files to compile
COPY . ./
RUN env NODE_ENV=production sh -c "yarn workspaces foreach --exclude native-utils run build && yarn gulp"
RUN env NODE_ENV=production sh -c "yarn workspace iceshrimp-js run build && yarn workspaces foreach --exclude native-utils --include sw --include client --include backend --include megalodon run build && yarn gulp"
# Trim down the dependencies to only those for production
RUN yarn workspaces focus --all --production