* Basic mtgjsonv4 support * Fix set type * [WIP] Oracle: use zx instead of zip * clanfigy fixes * Fix reading last block of xz * Added back zip support * [WIP] adding xz on ci + fixes * typo * resolve conflict * Make gcc an happy puppy * test appveyor build * appveyor maybe * Appveyor: add xz bindir * Update ssl version (the old one is not available anymore) * Windows is a really shitty platform to code on. * test vcpkg * again * gosh * nowarn * warning 2 * static * Maybe * cmake fix * fsck this pain * FindWin32SslRuntime: add vcpkg path * Appveyor: cache support, force usable of openssl from vcpkg * updated as suggested * ouch * Import card uuids and expose this property as !uuid! for card image download * Minor style fixes * address changed URL
19 lines
424 B
Docker
19 lines
424 B
Docker
FROM fedora:29
|
|
|
|
RUN dnf install -y \
|
|
@development-tools \
|
|
ccache \
|
|
cmake \
|
|
desktop-file-utils \
|
|
file \
|
|
gcc-c++ \
|
|
hicolor-icon-theme \
|
|
libappstream-glib \
|
|
protobuf-devel \
|
|
qt5-{qttools,qtsvg,qtmultimedia,qtwebsockets}-devel \
|
|
rpm-build \
|
|
sqlite-devel \
|
|
wget \
|
|
zlib-devel \
|
|
xz-devel \
|
|
&& dnf clean all
|