Minecraft-Console-Client/Docker/Dockerfile
Tan to the Dashi fd7a84bc91
Add Dockerfile (#1504)
* feat: Add Dockerfile
* fix: Download latest version and not a fixed one

Using jq we can query the appvoyor api to get the latest jobId
2021-03-14 11:14:13 +01:00

10 lines
No EOL
229 B
Docker

FROM mono:6.12.0
COPY start-latest.sh /opt/start-latest.sh
RUN apt-get update && \
apt-get install -y jq && \
mkdir /opt/data && \
chmod +x /opt/start-latest.sh
ENTRYPOINT ["/bin/sh", "-c", "/opt/start-latest.sh"]