docs2antr / Dockerfile
2ch's picture
Create Dockerfile
99de1a0 verified
raw
history blame
297 Bytes
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"]