mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 04:05:35 +00:00
15 lines
267 B
Docker
Executable file
15 lines
267 B
Docker
Executable file
FROM debian:9
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y git mono-devel libgtk-3-dev msbuild
|
|
|
|
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"]
|