Switch to npm

Signed-off-by: Max Schmidt <max.schmidt@outlook.de>
This commit is contained in:
Max Schmidt
2023-07-28 16:23:49 +02:00
parent f5ac068147
commit ce5bf1edf0
16 changed files with 25021 additions and 11095 deletions

View File

@ -1,29 +1,29 @@
FROM node:lts-alpine as base
WORKDIR /base
COPY ./package.json .
RUN yarn install
RUN npm install
COPY . .
FROM base AS dev
ENV NODE_ENV=development
EXPOSE 3001
CMD ["yarn","dev"]
CMD ["npm","run", "dev"]
FROM base AS build
ENV NODE_ENV=production
WORKDIR /build
COPY --from=base /base .
RUN yarn build
RUN npm run build
FROM build as prod
ENV NODE_ENV=production
WORKDIR /prod
COPY package*.json .
RUN yarn install --production
RUN npm install --production
COPY --from=build /build/tsconfig.json ./tsconfig.json
COPY --from=build /build/dist ./dist
COPY --from=build /build/build ./build
EXPOSE 3000
CMD ["yarn", "serve"]
CMD ["npm", "run", "serve"]