mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 14:45:37 +00:00
15 lines
291 B
Docker
15 lines
291 B
Docker
|
FROM debian:9
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y git python3 python3-pip ninja-build mono-devel libgtk-3-dev
|
||
|
|
||
|
RUN pip3 install git+https://github.com/mesonbuild/meson/
|
||
|
|
||
|
ENV SOURCE_DIR="/source"
|
||
|
|
||
|
RUN mkdir -p "${SOURCE_DIR}"
|
||
|
|
||
|
COPY / "${SOURCE_DIR}"
|
||
|
|
||
|
CMD ["/source/.ci_build.sh"]
|