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