diff --git a/Dockerfile b/Dockerfile index ee40d02..e6417b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ FROM base as runner WORKDIR /usr/src/app COPY --from=builder /usr/src/app/dist ./dist +COPY --from=builder /usr/src/app/static/stickers ./static/stickers COPY --from=builder /usr/src/app/node_modules ./node_modules COPY --from=builder /usr/src/app/package.json ./package.json diff --git a/nest-cli.json b/nest-cli.json index c8d0bbd..f9aa683 100644 --- a/nest-cli.json +++ b/nest-cli.json @@ -3,13 +3,6 @@ "collection": "@nestjs/schematics", "sourceRoot": "src", "compilerOptions": { - "deleteOutDir": true, - "assets": [ - { - "include": "../static/stickers/**", - "outDir": "dist/static", - "watchAssets": true - } - ] + "deleteOutDir": true } }