Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,11 @@
|
|
| 1 |
FROM ghcr.io/berriai/litellm:main-latest
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
EXPOSE 4000
|
| 4 |
|
| 5 |
ENTRYPOINT ["litellm"]
|
|
|
|
| 1 |
FROM ghcr.io/berriai/litellm:main-latest
|
| 2 |
|
| 3 |
+
# Set the working directory to /app
|
| 4 |
+
WORKDIR /app
|
| 5 |
+
|
| 6 |
+
# Copy the configuration file into the container at /app
|
| 7 |
+
COPY config.yaml .
|
| 8 |
+
|
| 9 |
EXPOSE 4000
|
| 10 |
|
| 11 |
ENTRYPOINT ["litellm"]
|