Rooni's picture
Update Dockerfile
3ec67df verified
raw
history blame contribute delete
160 Bytes
FROM node:18
WORKDIR /app
RUN npm install express express-http-proxy
RUN npm install axios
RUN npm install cors
COPY . .
EXPOSE 7860
CMD [ "node", "server.js" ]