matrix-chatgpt-bot/Dockerfile

9 lines
213 B
Docker
Raw Normal View History

FROM node:18
RUN git clone https://github.com/jakecoppinger/matrix-chatgpt-bot.git
WORKDIR matrix-chatgpt-bot
COPY env .env
#RUN yarn install
RUN yarn install --har --production=true
RUN yarn build
RUN yarn start