Files
common/renpy/renpy/Dockerfile
2025-06-24 15:24:16 -07:00

9 lines
185 B
Docker

# Container image that runs your code
FROM maienm/renpy:8.1.0
ENV RENPY_HOME="/opt/renpy/"
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]