Created
October 18, 2023 19:34
-
-
Save Shiro-Nek0/d3c82d373e20edf4f5dd2fe6e1e745eb to your computer and use it in GitHub Desktop.
unity renderstream dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
RUN apt-get update -y | |
RUN apt-get install wget -y | |
RUN wget https://github.com/Unity-Technologies/UnityRenderStreaming/releases/download/3.1.0-exp.7/webserver | |
WORKDIR / | |
RUN chmod +x webserver | |
EXPOSE 80 | |
CMD ["./webserver","-m","private"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment