* 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
22 lines
545 B
Docker
22 lines
545 B
Docker
FROM ubuntu:bionic
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
clang-format \
|
|
file \
|
|
g++ \
|
|
git \
|
|
ccache \
|
|
cmake \
|
|
liblzma-dev \
|
|
libprotobuf-dev \
|
|
libqt5multimedia5-plugins \
|
|
libqt5svg5-dev \
|
|
libqt5sql5-mysql \
|
|
libqt5websockets5-dev \
|
|
protobuf-compiler \
|
|
qt5-default \
|
|
qttools5-dev \
|
|
qttools5-dev-tools \
|
|
qtmultimedia5-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|