Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -3,4 +3,5 @@ WORKDIR /app
|
|
3 |
RUN git clone https://github.com/PublicAffairs/openai-gemini /app/tmp
|
4 |
RUN mv /app/tmp/* /app
|
5 |
RUN npm install
|
|
|
6 |
CMD ["npm", "start"]
|
|
|
3 |
RUN git clone https://github.com/PublicAffairs/openai-gemini /app/tmp
|
4 |
RUN mv /app/tmp/* /app
|
5 |
RUN npm install
|
6 |
+
RUN sed -i 's/server.listen(port, () => {/server.listen(port, "0.0.0.0", () => {/' /app/node.mjs
|
7 |
CMD ["npm", "start"]
|