Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -37,6 +37,10 @@ COPY . .
|
|
37 |
|
38 |
# Set proper permissions for the translations directory
|
39 |
RUN chmod -R 777 translations
|
|
|
|
|
|
|
|
|
40 |
# Download the required model
|
41 |
RUN ollama pull llama3
|
42 |
# Define the command to run the application
|
|
|
37 |
|
38 |
# Set proper permissions for the translations directory
|
39 |
RUN chmod -R 777 translations
|
40 |
+
|
41 |
+
# Start Ollama service (modify based on your OS)
|
42 |
+
RUN sudo systemctl start ollama
|
43 |
+
|
44 |
# Download the required model
|
45 |
RUN ollama pull llama3
|
46 |
# Define the command to run the application
|