SimFG commited on
Commit
3c1113d
·
1 Parent(s): c527532

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -26,8 +26,8 @@ RUN mkdir -p /.cache && \
26
  # Expose the port the app runs on
27
  EXPOSE 7860
28
 
29
- RUN poetry install --only main
30
 
31
  USER root
32
  # Set the command to run the application
33
- CMD ["poetry", "run", "python", "claude_to_chatgpt/app.py"]
 
26
  # Expose the port the app runs on
27
  EXPOSE 7860
28
 
29
+ RUN /root/.local/bin/poetry install --only main
30
 
31
  USER root
32
  # Set the command to run the application
33
+ CMD ["/root/.local/bin/poetry", "run", "python", "claude_to_chatgpt/app.py"]