mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-03 06:52:16 +02:00
10 lines
189 B
Docker
10 lines
189 B
Docker
FROM python:3.12-slim
|
|
|
|
# Set the working directory
|
|
WORKDIR /action/workspace
|
|
|
|
# Copy the script into the container
|
|
COPY . /action/workspace/
|
|
|
|
ENTRYPOINT ["/action/workspace/entrypoint.sh"]
|