-
-
Notifications
You must be signed in to change notification settings - Fork 253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker Support #47
Comments
What kind of Docker support would you expect? What do you want to achieve with it? |
I was also interested in running this in a container. The reason is I don't have python installed so I needed to download it in order to make it work. I tried but wasn't successful with running Here's the FROM python:3.13-slim
RUN apt-get -y update
RUN apt-get -y install git
ADD contribute.py .
CMD ["python", "contribute.py", "--repository=<YOUR_REPO>"] Build the container with Without dockerI ended up using uv to install python and run the script. If you're on mac, this worked for me:
Thanks so much for making this @Shpota!! |
A way to run this in a docker container.
The text was updated successfully, but these errors were encountered: