File size: 297 Bytes
99de1a0 |
1 2 3 4 5 6 7 8 9 |
FROM node:lts-alpine3.19
RUN apk add git curl bash wget sudo
WORKDIR /code
RUN git clone https://github.com/xLmiler/DocsAnthropic2API .
RUN npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force
COPY . .
ENV PORT=7860
EXPOSE 7860
CMD ["npm", "start"] |