blob: b95f5127a1fe541d638f97daebd4beeb03e615f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# podman build -t rawhide -f rawhide.dockerfile
# podman run -ti rawhide
#
FROM fedora:rawhide
RUN dnf -y update && \
dnf -y install git composer php-pdo && \
dnf clean all
CMD ["bash"]
|