SimFG commited on
Commit
44c1183
·
1 Parent(s): ef393f1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -20,13 +20,13 @@ RUN pip install poetry
20
 
21
  RUN id
22
 
23
- RUN poetry install --only main
24
  RUN mkdir -p /.cache && \
25
- chmod -R 777 /.cache && \
26
- source /root/.cache/pypoetry/virtualenvs/claude-to-chatgpt-9TtSrW0h-py3.9/bin/activate
27
 
28
  # Expose the port the app runs on
29
  EXPOSE 7860
30
 
 
 
31
  # Set the command to run the application
32
  CMD ["poetry", "run", "python", "/app/claude_to_chatgpt/app.py"]
 
20
 
21
  RUN id
22
 
 
23
  RUN mkdir -p /.cache && \
24
+ chmod -R 777 /.cache
 
25
 
26
  # Expose the port the app runs on
27
  EXPOSE 7860
28
 
29
+ RUN poetry install --only main
30
+
31
  # Set the command to run the application
32
  CMD ["poetry", "run", "python", "/app/claude_to_chatgpt/app.py"]