Update Dockerfile
Browse files- 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
|
25 |
|
26 |
RUN chown -R 1000:0 /root/.local/bin/poetry
|
27 |
|
28 |
# Set the command to run the application
|
29 |
-
CMD ["
|
|
|
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"]
|