revert Dockerfile aktualisiert
robbi-inspect
Robert Rapp 2023-12-07 04:33:10 +00:00
parent 63f795d4c9
commit 7a40953f04
1 changed files with 4 additions and 6 deletions

View File

@ -1,16 +1,14 @@
FROM node:18.14.2 as builder
FROM node:18.14.2
WORKDIR /app
ENV NODE_OPTIONS=--openssl-legacy-provider
COPY package*.json ./
RUN npm install
COPY . .
FROM node:18.14.2 as run
WORKDIR /app
COPY package*.json ./
COPY --from=builder /app/.output /.output
EXPOSE 3000
RUN npm run build
CMD [ "npm", "run", "start" ]