mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
* 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
10 lines
No EOL
229 B
Docker
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"] |