Skip to content

Commit

Permalink
adding Dockerfile in root
Browse files Browse the repository at this point in the history
  • Loading branch information
costero-e committed Nov 29, 2023
1 parent 8335993 commit f16ed9d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:19.0-alpine

# set working directory
WORKDIR /usr/src/app

# add _/usr/src/app/node_modules/.bin_ to $PATH
ENV PATH /usr/src/app/node_modules/.bin:$PATH

# install app dependencies
COPY package.json .
COPY yarn.lock .

RUN yarn install --production

0 comments on commit f16ed9d

Please sign in to comment.