distrobox/Symfony/Dockerfile

26 lines
706 B
Docker
Raw Normal View History

2024-07-27 21:36:23 +00:00
FROM fedora:40
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 \
# General Tools
git make just jq nvim fzf \
# Jetbrain Tools
fuse fuse-libs libXi libXrender libXtst fontconfig gtk3 tar dbus-libs \
# Symfony Dependencies
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"]