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