bot/Dockerfile

9 lines
146 B
Docker
Raw Normal View History

2023-09-23 12:51:15 +09:00
FROM node:18.17.1
2023-01-23 23:00:35 +09:00
RUN mkdir app
WORKDIR /app
COPY . .
2023-09-23 14:12:52 +09:00
RUN yarn install --immutable --immutable-cache
2023-01-23 23:00:35 +09:00
RUN yarn build
2023-01-24 12:55:58 +09:00
ENTRYPOINT ["yarn", "start"]