CodeLLAMA / Dockerfile
Rooni's picture
Update Dockerfile
930f079 verified
Raw
History Blame Contribute Delete
166 Bytes
FROM node:18
WORKDIR /app
RUN npm install express express-http-proxy
RUN npm install axios
RUN npm install node-fetch
COPY . .
EXPOSE 7860
CMD [ "node", "server.js" ]