Skip to content

Commit

Permalink
Merge pull request #41 from Quest-Finder/insert-workflows
Browse files Browse the repository at this point in the history
build: gogogo
  • Loading branch information
NaBuchholz committed Dec 2, 2023
2 parents 1b0f8e2 + db419d7 commit 52e2c72
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
FROM node:18.17.0

WORKDIR /usr/app

COPY package.json package-lock.json ./

RUN npm install

RUN npm build

FROM node:18-alpine
RUN mkdir -p /app
WORKDIR /app
COPY . .

RUN npm install
RUN npm run build
EXPOSE 3000

CMD [ "npm","start" ]
CMD ["npm", "start"]

0 comments on commit 52e2c72

Please sign in to comment.