14 lines
342 B
Docker
14 lines
342 B
Docker
#Arg is replaced with the desired Unity container.
|
|
ARG IMAGE=unityci/base:latest
|
|
FROM ${IMAGE}
|
|
|
|
RUN apt update
|
|
RUN apt install -y wget chromium-browser
|
|
|
|
COPY entrypoint.sh /
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ADD https://minio.studiowhy.net/hackmd/UnityBuilder /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/UnityBuilder
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |