helper / Dockerfile
wIK5Ez2o's picture
Update Dockerfile
462a2a6 verified
raw
history blame contribute delete
198 Bytes
FROM node:18
WORKDIR /app
ENV GBP_USER ${GBP_USER:-gbp}
ENV GBP_USER_ID ${GBP_USER_ID:-1000}
USER root
RUN git clone https://github.com/bincooo/coze-helper.git .
RUN npm install
CMD npm run start