pokerogue/.github/actions/bump-version/Dockerfile

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"]