Snoweuph
d4cea7b5fa
All checks were successful
Build Symfony Devcontainer / build_act (push) Successful in 1m18s
21 lines
No EOL
422 B
Docker
21 lines
No EOL
422 B
Docker
FROM registry.fedoraproject.org/fedora:latest
|
|
|
|
# Add Symfony CLI Source
|
|
RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.rpm.sh' | bash
|
|
|
|
RUN dnf install -y \
|
|
php \
|
|
composer \
|
|
php-pdo \
|
|
php-mysqlnd \
|
|
symfony-cli \
|
|
just \
|
|
jq \
|
|
fzf \
|
|
screen \
|
|
highlight \
|
|
&& dnf clean all
|
|
|
|
# Install Volta
|
|
RUN curl https://get.volta.sh | bash
|
|
ENV PATH="/root/.volta/bin:${PATH}" |