diff options
-rw-r--r-- | .github/workflows/lint-test.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index f9ab661..6365eee 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -46,19 +46,19 @@ jobs: run: docker image ls - name: Start Container - run: 'docker run \ + run: "docker run \ --tty \ --detach \ --name snekbox_test \ --privileged \ --hostname pdsnk-dev \ -e PYTHONDONTWRITEBYTECODE=1 \ - -e PIPENV_PIPFILE="/snekbox/Pipfile" \ - -e ENV="${PWD}/scripts/.profile" \ - --volume "${PWD}":"${PWD}" \ - --workdir "${PWD}"\ + -e PIPENV_PIPFILE='/snekbox/Pipfile\' \ + -e ENV='${PWD}/scripts/.profile' \ + --volume '${PWD}':'${PWD}' \ + --workdir '${PWD}'\ --entrypoint /bin/bash \ - pythondiscord/snekbox-venv:latest' + ghcr.io/python-discord/snekbox-base:latest" - name: Install dependencies run: "docker exec snekbox_test /bin/bash -c \ |