5 lines
91 B
Bash
5 lines
91 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
docker run --rm --interactive --tty \
|
||
|
|
--volume $PWD:/app \
|
||
|
|
composer update
|