|
|
@ -1,5 +1,5 @@ |
|
|
FROM ubuntu:18.04 |
|
|
FROM ubuntu:18.04 |
|
|
MAINTAINER citra |
|
|
|
|
|
|
|
|
LABEL maintainer="citraemu" |
|
|
RUN useradd -m -s /bin/bash citra && mkdir -p /tmp/pkgs |
|
|
RUN useradd -m -s /bin/bash citra && mkdir -p /tmp/pkgs |
|
|
RUN apt-get update && apt-get install -y gpg wget git python3-pip ccache p7zip-full g++-mingw-w64-x86-64 gcc-mingw-w64-x86-64 mingw-w64-tools cmake ninja-build |
|
|
RUN apt-get update && apt-get install -y gpg wget git python3-pip ccache p7zip-full g++-mingw-w64-x86-64 gcc-mingw-w64-x86-64 mingw-w64-tools cmake ninja-build |
|
|
# workaround broken headers in Ubuntu MinGW package |
|
|
# workaround broken headers in Ubuntu MinGW package |
|
|
@ -10,3 +10,4 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv '72931B477E22FEFD47F8DEC |
|
|
RUN apt-get install -y sdl2-mingw-w64 qt5base-mingw-w64 qt5tools-mingw-w64 libsamplerate-mingw-w64 qt5multimedia-mingw-w64 |
|
|
RUN apt-get install -y sdl2-mingw-w64 qt5base-mingw-w64 qt5tools-mingw-w64 libsamplerate-mingw-w64 qt5multimedia-mingw-w64 |
|
|
COPY mingw-setup.sh /tmp/pkgs |
|
|
COPY mingw-setup.sh /tmp/pkgs |
|
|
RUN cd /tmp/pkgs && bash -e mingw-setup.sh |
|
|
RUN cd /tmp/pkgs && bash -e mingw-setup.sh |
|
|
|
|
|
USER citra |