Skip to content

Commit

Permalink
Merge pull request #50 from webvisum/main
Browse files Browse the repository at this point in the history
[INFRA] fix posix source usage
  • Loading branch information
mautz-et-tong authored Aug 15, 2023
2 parents c958f91 + 1ed5629 commit 6fe8a3b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/7.4/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ RUN set -xe; \
\
composer global require deployer/deployer; \
composer global update; \
echo "export PATH=$PATH:~/.composer/vendor/bin" >> ~/.bashrc && source ~/.bashrc
echo "export PATH=$PATH:~/.composer/vendor/bin" >> ~/.bashrc && . ~/.bashrc

# hadolint ignore=DL4006
RUN set -xe; \
Expand Down
2 changes: 1 addition & 1 deletion src/8.0/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ RUN set -xe; \
\
composer global require deployer/deployer; \
composer global update; \
echo "export PATH=$PATH:~/.composer/vendor/bin" >> ~/.bashrc && source ~/.bashrc
echo "export PATH=$PATH:~/.composer/vendor/bin" >> ~/.bashrc && . ~/.bashrc

# hadolint ignore=DL4006
RUN set -xe; \
Expand Down
2 changes: 1 addition & 1 deletion src/8.1/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ RUN set -xe; \
\
composer global require deployer/deployer; \
composer global update; \
echo "export PATH=$PATH:~/.composer/vendor/bin" >> ~/.bashrc && source ~/.bashrc
echo "export PATH=$PATH:~/.composer/vendor/bin" >> ~/.bashrc && . ~/.bashrc

# hadolint ignore=DL4006
RUN set -xe; \
Expand Down
2 changes: 1 addition & 1 deletion src/8.2/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ RUN set -xe; \
\
composer global require deployer/deployer; \
composer global update; \
echo "export PATH=$PATH:~/.composer/vendor/bin" >> ~/.bashrc && source ~/.bashrc
echo "export PATH=$PATH:~/.composer/vendor/bin" >> ~/.bashrc && . ~/.bashrc

# hadolint ignore=DL4006
RUN set -xe; \
Expand Down

0 comments on commit 6fe8a3b

Please sign in to comment.