2019-11-13 22:27:35 +08:00
|
|
|
FROM citraemu/build-environments:linux-fresh
|
2018-03-07 18:32:18 -05:00
|
|
|
|
|
|
|
# Create app directory
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
|
|
|
# Download the Citra binary.
|
|
|
|
# Bundle citra-room inside the image and delete the downloaded tar file.
|
2020-04-13 15:06:11 -06:00
|
|
|
RUN wget -O citra-linux.tar.xz https://github.com/citra-emu/citra-canary/releases/download/canary-1641/citra-linux-20200413-e9f68ae.tar.xz && \
|
2018-03-07 18:32:18 -05:00
|
|
|
tar --wildcards --strip=1 -xJf citra-linux.tar.xz */citra-room && rm citra-linux.tar.xz
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/usr/src/app/citra-room" ]
|