commit fd2f92c4ceb9d87e010a3cab1b6a1d049ba6342e Author: thmsdy Date: Fri Dec 18 12:11:36 2020 -0600 add Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..668887c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +FROM ubuntu:20.04 AS build-env + +ENV DEBIAN_FRONTEND=interactive + +USER root + +RUN apt-get update && apt-get install -y software-properties-common + +RUN add-apt-repository ppa:openrct2/master && apt-get update && apt-get install --no-install-recommends -y openrct2 + +RUN openrct2-cli --version && openrct2-cli scan-objects + +RUN adduser --quiet --home /home/container container + +USER container + +ENV USER=container HOME=/home/container + +WORKDIR /home/container + +COPY ./entrypoint.sh /entrypoint.sh +ENTRYPOINT /bin/bash /entrypoint.sh \ No newline at end of file