SimFG commited on
Commit
dbb95c1
·
1 Parent(s): bbcf422

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -21,9 +21,9 @@ ENV PATH="/root/.local/bin:$PATH"
21
  # Expose the port the app runs on
22
  EXPOSE 7860
23
 
24
- RUN /root/.local/bin/poetry install --only main
25
 
26
  RUN chown -R 1000:0 /root/.local/bin/poetry
27
 
28
  # Set the command to run the application
29
- CMD ["/root/.local/bin/poetry", "run", "python", "claude_to_chatgpt/app.py"]
 
21
  # Expose the port the app runs on
22
  EXPOSE 7860
23
 
24
+ RUN poetry install --only main
25
 
26
  RUN chown -R 1000:0 /root/.local/bin/poetry
27
 
28
  # Set the command to run the application
29
+ CMD ["poetry", "run", "python", "claude_to_chatgpt/app.py"]