diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63266b9..125f86f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,10 @@ jobs: - name: Run run: | make run - - uses: quarto-dev/quarto-actions/setup@v2 + - name: Install Quarto + uses: quarto-dev/quarto-actions/setup@v2 + with: + version: pre-release - name: Render run: | make render diff --git a/README.md b/README.md index fa3d046..ed61c81 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,11 @@ The fastest way to start using Datadex is via [VSCode Remote Containers](https:/ The development environment can also run in your browser thanks to GitHub Codespaces! -You can also build the Docker image locally and run it with: +You can also build the [Dockerfile](Dockerfile) image locally and run it with: ```bash -make build -make docker-run +docker build -t datadex . +docker run -it -v $(pwd):/workspaces/datadex -p 3000:3000 datadex ``` ### 🐍 Python Virtual Environment