From 7fd15c76190d9a10c14ed228985ea0705b04d324 Mon Sep 17 00:00:00 2001 From: David Gasquez Date: Mon, 11 Dec 2023 15:25:43 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=8E=A8=20add=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 5 ++++- README.md | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) 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