9 lines
185 B
Docker
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"]
|