7 lines
161 B
Plaintext
7 lines
161 B
Plaintext
# Install composer
|
|
RUN curl -sS https://getcomposer.org/installer | php
|
|
RUN mv composer.phar /usr/local/bin/composer
|
|
|
|
# Define the default command.
|
|
CMD ["bash"]
|