eco-discord-bot/Dockerfile
2023-06-28 03:21:58 +12:00

12 lines
118 B
Docker

FROM node:19-alpine
ENV STORAGE=/app/storage
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn build
CMD yarn start