distrobox/jetbrains/symfony/Dockerfile

23 lines
571 B
Docker
Raw Normal View History

2024-07-27 21:36:23 +00:00
FROM fedora:40
2024-07-27 21:46:32 +00:00
ARG JETBRAINS_DEPENDENCIES
2024-07-27 18:21:30 +00:00
2024-07-27 21:36:23 +00:00
# Set environment variables
ENV BOX_NAME="phpstorm"
2024-07-27 18:21:30 +00:00
2024-07-27 21:36:23 +00:00
# Install required packages and setup sources
RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.rpm.sh' | bash \
&& dnf install -y \
2024-07-27 21:46:32 +00:00
$JETBRAINS_DEPENDENCIES \
2024-07-27 21:36:23 +00:00
php \
composer \
php-pdo \
php-mysqlnd \
symfony-cli \
2024-07-27 18:21:30 +00:00
&& dnf clean all
2024-07-27 21:36:23 +00:00
# Link outside tooling
RUN ln -s /usr/bin/distrobox-host-exec /usr/local/bin/podman
# Command to run on container start
CMD ["distrobox-enter", "--name", "$BOX_NAME"]