Skip to content

Commit

Permalink
Add dockerfile for openrct2-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
IntelOrca authored and Gymnasiast committed Feb 1, 2018
1 parent 6c49d45 commit b20ac61
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bin/
build/
lib/
obj/
22 changes: 22 additions & 0 deletions dockerfiles/openrct2-cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Build OpenRCT2 using build environment image
FROM openrct2/openrct2:ubuntu_amd64 AS build-env
WORKDIR /openrct2
COPY . ./
RUN mkdir build \
&& cd build \
&& cmake .. -G Ninja -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/openrct2-install/usr -DCMAKE_INSTALL_LIBDIR=/openrct2-install/usr/lib \
&& ninja -k0 install

# Build runtime image
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get install --no-install-recommends -y rsync ca-certificates libjansson4 libpng12-0 libzip4 libcurl3 libfreetype6 libfontconfig1

# Install OpenRCT2
COPY --from=build-env /openrct2-install /openrct2-install
RUN rsync -a /openrct2-install/* / \
&& rm -rf /openrct2-install

# Done
ENTRYPOINT ["openrct2-cli"]

0 comments on commit b20ac61

Please sign in to comment.