1
0
Fork 0
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.
citra-multiplayer-dedicated/Dockerfile

18 lines
613 B
Docker
Raw Normal View History

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
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
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" ]