Remove needless arguments from Docker scripts
This commit is contained in:
parent
87ef0c56ee
commit
3fd5bd32d8
|
@ -32,10 +32,10 @@ COPY scripts/docker-install-phase5.bash /tmp/
|
|||
RUN /tmp/docker-install-phase5.bash
|
||||
|
||||
COPY scripts/docker-install-phase6.bash /tmp/
|
||||
RUN /tmp/docker-install-phase6.bash "$UID"
|
||||
RUN /tmp/docker-install-phase6.bash
|
||||
|
||||
COPY scripts/docker-install-phase7.bash /tmp/
|
||||
RUN /tmp/docker-install-phase7.bash "$UID"
|
||||
RUN /tmp/docker-install-phase7.bash
|
||||
|
||||
COPY scripts/docker-install-phase8.bash /tmp/
|
||||
RUN /tmp/docker-install-phase8.bash "$UID"
|
||||
|
|
|
@ -37,7 +37,7 @@ COPY scripts/docker-install-phase6.bash /tmp/
|
|||
RUN /tmp/docker-install-phase6.bash
|
||||
|
||||
COPY scripts/docker-install-phase7.bash /tmp/
|
||||
RUN /tmp/docker-install-phase7.bash "$UID"
|
||||
RUN /tmp/docker-install-phase7.bash
|
||||
|
||||
COPY scripts/docker-install-phase8.bash /tmp/
|
||||
RUN /tmp/docker-install-phase8.bash "$UID"
|
||||
|
|
Loading…
Reference in New Issue