ruslanmv commited on
Commit
f710f2c
·
1 Parent(s): b98577a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- # Copy the entry point script
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