Created
April 2, 2018 08:20
-
-
Save akirak/9d97eaca5f341f8587d3ca4994c4e17b to your computer and use it in GitHub Desktop.
Nim on Fedora with RPM Fusion on Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM fedora | |
MAINTAINER Akira Komamura, [email protected] | |
# Add RPM Fusion | |
RUN dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \ | |
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm | |
# Install packages | |
RUN dnf -y install nim | |
# git is required by nimble to download a package | |
RUN dnf -y install git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment