BuildEnvironments/LinuxGeneralCompiler/Dockerfile
2025-06-29 10:25:44 -07:00

26 lines
571 B
Docker

FROM git.zontreck.com/packages/appimage:latest
ENV PUB NAN
ENV AGENT NAN
ENV VSAPI 1.20.12
LABEL VINTAGESTORY API is available
WORKDIR /
ADD ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
WORKDIR /root/.local/share
ADD ./dlvs.sh /bin/dlvs
ADD ./pullvs.sh /bin/pullvs
ADD ./mkdotgame /bin/mkdotgame
# Bootstrap all the commonly used Vintage Story versions
RUN chmod +x /bin/mkdotgame && \
ln -sfv /bin/mkdotgame /bin/update_vs_dotgame && \
chmod +x /bin/dlvs && chmod +x /bin/pullvs && \
pullvs
ENTRYPOINT [ "/bin/bash", "/entrypoint.sh" ]