mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
18 lines
341 B
Docker
18 lines
341 B
Docker
# initialize from the image
|
|
|
|
FROM fedora:25
|
|
|
|
# update package repositories
|
|
|
|
RUN dnf update -y
|
|
|
|
# install tools
|
|
|
|
RUN dnf install -y cmake make wget
|
|
RUN dnf install -y gcc gcc-c++ git make patchutils pkgconfig wget
|
|
|
|
# install dependencies for Linux packaging
|
|
|
|
RUN dnf install -y ruby-devel rubygems rpm-build
|
|
RUN gem install fpm --no-document
|