Update Dockerfile
Browse files- Dockerfile +2 -6
Dockerfile
CHANGED
|
@@ -31,10 +31,6 @@ EXPOSE 11434
|
|
| 31 |
COPY . .
|
| 32 |
# Set proper permissions for the translations directory
|
| 33 |
RUN chmod -R 777 translations
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
COPY entrypoint.sh /entrypoint.sh
|
| 37 |
-
RUN chmod +x /entrypoint.sh
|
| 38 |
-
ENTRYPOINT ["/entrypoint.sh"]
|
| 39 |
-
CMD ["ollama", "serve"]
|
| 40 |
|
|
|
|
| 31 |
COPY . .
|
| 32 |
# Set proper permissions for the translations directory
|
| 33 |
RUN chmod -R 777 translations
|
| 34 |
+
# Define the command to run the application
|
| 35 |
+
CMD ["python", "./run.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|