Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
projkov committed Jul 14, 2024
1 parent 3970364 commit d3c8fe7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM node:lts as builder

RUN mkdir -p /app/src

WORKDIR /app

ADD package.json package.json
ADD yarn.lock yarn.lock

RUN yarn install

ADD . /app

RUN yarn build

0 comments on commit d3c8fe7

Please sign in to comment.