hotfix: fixes broken build

This commit is contained in:
2025-11-01 13:20:32 -03:00
parent 6c26efc145
commit 4f6d03adda
2 changed files with 6 additions and 6 deletions

View File

@@ -13,16 +13,16 @@ FROM base AS prod
WORKDIR /app
RUN apk add --update gettext python3 py3-pip py3-setuptools make g++ && \
rm -rf /var/cache/apk/*
COPY --from=build /app/node_modules ./node_modules
COPY . .
RUN npm install -g @angular/cli@20.3.8
RUN apk add --update gettext python3 py3-pip py3-setuptools make g++ && \
rm -rf /var/cache/apk/*
RUN npm run build:prod
EXPOSE 5000-7000