vikarshana commited on
Commit
8959f15
·
verified ·
1 Parent(s): 5f56de0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -27,11 +27,8 @@ RUN mkdir -p /config /data /temp && \
27
  chmod -R 775 /temp
28
 
29
  # Copy start script and make it executable
30
- COPY start.sh /app/start.sh
31
- RUN chmod +x /app/start.sh
32
-
33
  # Expose the application port
34
  EXPOSE 7860
35
 
36
  # Use the start script as the entrypoint
37
- ENTRYPOINT ["/app/start.sh"]
 
27
  chmod -R 775 /temp
28
 
29
  # Copy start script and make it executable
 
 
 
30
  # Expose the application port
31
  EXPOSE 7860
32
 
33
  # Use the start script as the entrypoint
34
+ CMD ["python", "srv.py"]