ChatGPTPlugins / Dockerfile
ngoctuanai's picture
Update Dockerfile
c4bcdaf verified
raw
history blame
302 Bytes
FROM node:18
WORKDIR /ChatGPT-Plugins
RUN apt-get update && apt-get install -y
RUN git clone https://github.com/chokiproai/ChatGPT-Plugins.git
RUN npm install --legacy-peer-deps
ENV PORT=3000
# Mở cổng để truy cập ứng dụng
EXPOSE 3000
# Khởi chạy ứng dụng
CMD ["npm", "start"]