stockpile/Dockerfile

13 lines
127 B
Docker
Raw Permalink Normal View History

2023-05-07 19:25:03 +00:00
FROM node:alpine
WORKDIR /usr/app
COPY package.json .
2023-05-09 05:24:11 +00:00
COPY . .
2023-05-07 19:25:03 +00:00
RUN yarn
2023-05-09 05:24:11 +00:00
RUN yarn build
2023-05-07 19:25:03 +00:00
EXPOSE 6379
2023-05-09 05:24:11 +00:00
ENTRYPOINT ["yarn app"]