| 1234567891011121314151617181920212223242526272829 | FROM langgenius/base:1.0.0-bullseye-slimLABEL maintainer="takatost@gmail.com"ENV EDITION SELF_HOSTEDENV DEPLOY_ENV PRODUCTIONENV CONSOLE_URL http://127.0.0.1:5001ENV APP_URL http://127.0.0.1:5001EXPOSE 3000WORKDIR /app/webCOPY package.json /app/web/package.jsonRUN npm installCOPY . /app/web/RUN npm run buildCOPY docker/pm2.json /app/web/pm2.jsonCOPY docker/entrypoint.sh /entrypoint.shRUN chmod +x /entrypoint.shARG COMMIT_SHAENV COMMIT_SHA ${COMMIT_SHA}ENTRYPOINT ["/entrypoint.sh"]
 |