memex-in commited on
Commit
15d3c02
·
verified ·
1 Parent(s): 1fa864d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- # The base image's ENTRYPOINT is already `dockerd-rootless.sh`.
28
- # We override the default CMD to run our custom start.sh script.
29
- CMD ["./start.sh"]
 
 
 
 
 
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 []