Symfony/Dockerfile aktualisiert
Some checks failed
Build Symfony Devcontainer / build_act (push) Failing after 39s

This commit is contained in:
Snoweuph 2024-07-27 18:45:19 +00:00
parent 4c2cfd8d3f
commit 181054bd76

View file

@ -1,7 +1,7 @@
FROM registry.fedoraproject.org/fedora-toolbox:latest FROM registry.fedoraproject.org/fedora-minimal:latest
# Add Symfony CLI Source # Add Symfony CLI Source
RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.rpm.sh' | sudo -E bash RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.rpm.sh' | bash
RUN dnf install -y \ RUN dnf install -y \
php \ php \
@ -18,3 +18,4 @@ RUN dnf install -y \
# Install Volta # Install Volta
RUN curl https://get.volta.sh | bash RUN curl https://get.volta.sh | bash
ENV PATH="/root/.volta/bin:${PATH}"