2017-04-16 01:00:50 -05:00
|
|
|
FROM wombatant/devenv:latest
|
2017-04-14 04:08:13 -05:00
|
|
|
|
|
|
|
ENV DEVKITPRO /opt/devkitPro
|
|
|
|
ENV DEVKITARM ${DEVKITPRO}/devkitARM
|
|
|
|
|
2017-11-09 21:43:59 -06:00
|
|
|
RUN dnf install -y findutils ninja-build
|
2018-04-13 00:48:14 -05:00
|
|
|
|
|
|
|
# Install Powershell
|
|
|
|
RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc
|
|
|
|
RUN curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo
|
|
|
|
RUN dnf update -y
|
|
|
|
RUN dnf install -y powershell
|
2018-04-13 17:42:20 -05:00
|
|
|
|
|
|
|
ENV CC clang
|
|
|
|
ENV CXX clang++
|