This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2021-10-22 00:13:40 +00:00
|
|
|
FROM debian:bullseye AS build
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get -y full-upgrade && \
|
|
|
|
apt-get install -y build-essential libsdl2-dev wget git ccache cmake ninja-build
|
2018-03-07 23:32:18 +00:00
|
|
|
|
2021-10-22 00:13:40 +00:00
|
|
|
COPY . /root/build-files
|
|
|
|
|
|
|
|
RUN git clone --recursive https://github.com/citra-emu/citra-canary.git /root/citra-canary && \
|
|
|
|
cd /root/citra-canary && /root/build-files/.ci/build.sh
|
|
|
|
|
|
|
|
FROM debian:bullseye-slim AS final
|
|
|
|
LABEL maintainer="citraemu"
|
2018-03-07 23:32:18 +00:00
|
|
|
# Create app directory
|
|
|
|
WORKDIR /usr/src/app
|
2021-10-22 00:13:40 +00:00
|
|
|
COPY --from=build /root/citra-canary/build/bin/Release/citra-room /usr/src/app
|
2018-03-07 23:32:18 +00:00
|
|
|
|
|
|
|
ENTRYPOINT [ "/usr/src/app/citra-room" ]
|