open-ai-proxy / dockerfile
Amkaming's picture
Rename Dockerfile to dockerfile
6b65e98
raw
history blame contribute delete
No virus
122 Bytes
FROM node:18
WORKDIR /app
RUN npm install express express-http-proxy
COPY . .
EXPOSE 7860
CMD [ "node", "server.js" ]