mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-05-11 22:52:11 +02:00
11 lines
179 B
Docker
11 lines
179 B
Docker
FROM fedora:31
|
|
|
|
WORKDIR /root
|
|
|
|
RUN dnf -y upgrade --setopt=install_weak_deps=False && \
|
|
dnf -y install --setopt=install_weak_deps=False bash git make gcc-c++
|
|
|
|
CMD /bin/bash
|
|
|
|
|