Perilon commited on
Commit
c572cb2
·
1 Parent(s): 801bc50
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. entrypoint.sh +1 -1
Dockerfile CHANGED
@@ -49,4 +49,4 @@ RUN ls -la /app && \
49
  pip list
50
 
51
  # Use entrypoint script
52
- CMD ["/app/entrypoint.sh"]
 
49
  pip list
50
 
51
  # Use entrypoint script
52
+ CMD ["bash", "/app/entrypoint.sh"]
entrypoint.sh CHANGED
@@ -1,7 +1,7 @@
1
  #!/bin/bash
2
  set -e
3
 
4
- echo "Starting application..."
5
  echo "Current directory: $(pwd)"
6
  echo "Files in directory:"
7
  ls -la
 
1
  #!/bin/bash
2
  set -e
3
 
4
+ echo "Starting application"
5
  echo "Current directory: $(pwd)"
6
  echo "Files in directory:"
7
  ls -la