diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 846b633..6afbfbd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,10 +44,6 @@ git clone git@github.com:/FawltyDeps-action-action-action-action- ### Set Up Your Development Environment -#### Docker - -This uses [Docker](https://docker.io/) to package the container needed for the GitHub action. - ## Making Changes ### Branch Naming diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index d030ab8..0000000 --- a/Dockerfile +++ /dev/null @@ -1,11 +0,0 @@ -FROM python:3.12-slim -ARG VERSION=v0.15.0 - -ENV VIRTUAL_ENV=/opt/venv -RUN python -m venv $VIRTUAL_ENV -RUN $VIRTUAL_ENV/bin/pip install --no-cache-dir --upgrade pip setuptools \ - && $VIRTUAL_ENV/bin/pip install --no-cache-dir fawltydeps==$VERSION - -ENV PATH="${VIRTUAL_ENV}/bin:$PATH" - -CMD ["${VIRTUAL_ENV}/bin/fawltydeps"]