Bug fixes
Browse files- Dockerfile +1 -1
- 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
|