matrix-chatgpt-bot/Dockerfile
Michiel Piscaer a454e7f1b3
Add Dockerfile
Dockerfile to use matrix-chatgpt-bot via Docker
2022-12-21 22:17:01 +01:00

9 lines
213 B
Docker

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