distrobox/Symfony/Dockerfile

24 lines
443 B
Docker

FROM registry.fedoraproject.org/fedora-toolbox:latest
# Add Symfony CLI Source
RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.rpm.sh' | sudo -E bash
RUN dnf install -y \
git \
php \
composer \
php-pdo \
php-mysqlnd \
symfony-cli \
just \
jq \
fzf \
screen \
sed \
awk \
cut \
highlight \
&& dnf clean all
# Install Volta
RUN curl https://get.volta.sh | bash