maze-solver/.forgejo/actions/python/Dockerfile
Dan Anglin c49707e404
All checks were successful
test / test (pull_request) Successful in 3s
ci: update Forgejo workflow
Run the python tests in a Python container using a custom local action
and a Dockerfile to build the testing environment.

Resolves the issue where setup-python doesn't seem to work with Forgejo
actions (at least for me anyway).
2024-08-16 06:46:40 +01:00

5 lines
62 B
Docker

FROM python:3.12.5
ADD *.sh /
ENTRYPOINT ["/entrypoint.sh"]