Revert "Merge branch 'master' into getbundles-fix"

This reverts commit 30168844f3, reversing
changes made to 2e60e2e3d5.
This commit is contained in:
2024-10-24 10:59:09 -04:00
parent c9ecbb911a
commit 1d48499c64
14 changed files with 168 additions and 546 deletions

View File

@@ -42,8 +42,6 @@ RUN node -v && npm -v
COPY package.json package-lock.json ./
COPY moleculer.config.ts ./
COPY tsconfig.json ./
COPY scripts ./scripts
RUN chmod +x ./scripts/*
# Install application dependencies
RUN npm install
@@ -52,8 +50,9 @@ RUN npm install -g typescript ts-node
# Copy the rest of the application files
COPY . .
# clean up
RUN npm prune
# Build and clean up
RUN npm run build \
&& npm prune
# Expose the application's port
EXPOSE 3000