revert
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-05-09 18:18:14 -04:00
parent 799ff00f9c
commit f327c6e06e

View File

@@ -13,6 +13,6 @@ ENV NODE_ENV ${ENV:-production}
WORKDIR /home/node/app WORKDIR /home/node/app
COPY package*.json ./ COPY package*.json ./
RUN yarn install --frozen-lockfile --production RUN yarn install --frozen-lockfile --production
COPY --from=0 /home/node/app/dist/**/*.js . COPY --from=0 /home/node/app/dist .
EXPOSE ${PORT} EXPOSE ${PORT}
CMD ["node","server/index.js"] CMD ["node","server/index.js"]