Skip to content

Commit e525ec3

Browse files
authored
Merge pull request #36 from DataRecce/feature/drc-828-fail-to-open-recce-instance-from-cloud-20241023
Install dependency based on project config
2 parents d22ff3b + 9d18610 commit e525ec3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.devcontainer/recce/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
FROM mcr.microsoft.com/vscode/devcontainers/python:3.11
22

3-
RUN pip install dbt-duckdb==1.5.0 duckdb==0.7.1 recce
3+
COPY requirements.txt .
4+
5+
RUN pip install --no-cache-dir -r requirements.txt
6+
RUN pip install --no-cache-dir recce

.devcontainer/recce/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "Recce CodeSpace",
33
"build": {
4-
"dockerfile": "Dockerfile"
4+
"dockerfile": "Dockerfile",
5+
"context": "../../"
56
},
67
"features": {
78
"ghcr.io/devcontainers/features/github-cli:1": {}

0 commit comments

Comments
 (0)