Skip to content

Commit

Permalink
Merge pull request #36 from DataRecce/feature/drc-828-fail-to-open-re…
Browse files Browse the repository at this point in the history
…cce-instance-from-cloud-20241023

Install dependency based on project config
  • Loading branch information
wcchang1115 authored Oct 24, 2024
2 parents d22ff3b + 9d18610 commit e525ec3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .devcontainer/recce/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
FROM mcr.microsoft.com/vscode/devcontainers/python:3.11

RUN pip install dbt-duckdb==1.5.0 duckdb==0.7.1 recce
COPY requirements.txt .

RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir recce
3 changes: 2 additions & 1 deletion .devcontainer/recce/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "Recce CodeSpace",
"build": {
"dockerfile": "Dockerfile"
"dockerfile": "Dockerfile",
"context": "../../"
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
Expand Down

0 comments on commit e525ec3

Please sign in to comment.