File size: 303 Bytes
2178079
 
 
 
 
c3b1808
427203f
6303768
1
2
3
4
5
6
7
8
FROM node:18
WORKDIR /app
RUN git clone https://github.com/PublicAffairs/openai-gemini /app/tmp
RUN mv /app/tmp/* /app
RUN npm install
RUN sed -i 's/server.listen(port, () => {/server.listen(port, "0.0.0.0", () => {/' /app/node.mjs
RUN sed -i 's|/v1/|/api/v1/|g' /app/src/worker.mjs
CMD ["npm", "start"]