Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +7 -3
Dockerfile
CHANGED
@@ -24,6 +24,10 @@ USER docker
|
|
24 |
# within the DinD container. Then, we can map this 8080 to the host.
|
25 |
EXPOSE 8080
|
26 |
|
27 |
-
#
|
28 |
-
#
|
29 |
-
|
|
|
|
|
|
|
|
|
|
24 |
# within the DinD container. Then, we can map this 8080 to the host.
|
25 |
EXPOSE 8080
|
26 |
|
27 |
+
# Set our custom start.sh script as the ENTRYPOINT
|
28 |
+
# This ensures start.sh is the main process that gets executed
|
29 |
+
ENTRYPOINT ["./start.sh"]
|
30 |
+
|
31 |
+
# CMD can be left empty or provide default arguments to ENTRYPOINT if needed.
|
32 |
+
# In this case, start.sh handles everything.
|
33 |
+
CMD []
|