Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -30,8 +30,9 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
30 |
# Install additional software
|
31 |
RUN curl -fsSL https://ollama.com/install.sh | sh
|
32 |
|
33 |
-
#
|
34 |
-
|
|
|
35 |
COPY . .
|
36 |
|
37 |
# Set proper permissions for the translations directory
|
|
|
30 |
# Install additional software
|
31 |
RUN curl -fsSL https://ollama.com/install.sh | sh
|
32 |
|
33 |
+
# Expose the port the application uses (replace 11434 with the actual port)
|
34 |
+
EXPOSE 11434
|
35 |
+
|
36 |
COPY . .
|
37 |
|
38 |
# Set proper permissions for the translations directory
|