diff --git a/contrib/buildbot/Dockerfile b/contrib/buildbot/Dockerfile new file mode 100644 index 000000000..df3ec061c --- /dev/null +++ b/contrib/buildbot/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3.9-bullseye + +WORKDIR /work + +COPY . . +RUN pip install -r requirements.txt + +CMD python abcbot.py diff --git a/contrib/buildbot/Dockerfile.dockerignore b/contrib/buildbot/Dockerfile.dockerignore new file mode 100644 index 000000000..c31014aa9 --- /dev/null +++ b/contrib/buildbot/Dockerfile.dockerignore @@ -0,0 +1,6 @@ +# Ignore local caches +**/__pycache__ +**/.pytest_cache + +# Ignore tests +test