Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -19,13 +19,13 @@ RUN pip install --user poetry
|
|
| 19 |
# Expose the port the app runs on
|
| 20 |
EXPOSE 7860
|
| 21 |
|
|
|
|
|
|
|
| 22 |
RUN poetry install --only main
|
| 23 |
|
| 24 |
RUN chown -R 1000:0 /root/.local/bin/poetry
|
| 25 |
|
| 26 |
RUN python3 -m pip install --upgrade pip
|
| 27 |
|
| 28 |
-
ENV PATH="/root/.local/bin:$PATH"
|
| 29 |
-
|
| 30 |
# Set the command to run the application
|
| 31 |
CMD ["poetry", "run", "python", "claude_to_chatgpt/app.py"]
|
|
|
|
| 19 |
# Expose the port the app runs on
|
| 20 |
EXPOSE 7860
|
| 21 |
|
| 22 |
+
ENV PATH="/root/.local/bin:$PATH"
|
| 23 |
+
|
| 24 |
RUN poetry install --only main
|
| 25 |
|
| 26 |
RUN chown -R 1000:0 /root/.local/bin/poetry
|
| 27 |
|
| 28 |
RUN python3 -m pip install --upgrade pip
|
| 29 |
|
|
|
|
|
|
|
| 30 |
# Set the command to run the application
|
| 31 |
CMD ["poetry", "run", "python", "claude_to_chatgpt/app.py"]
|