We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d22ff3b + 9d18610 commit e525ec3Copy full SHA for e525ec3
.devcontainer/recce/Dockerfile
@@ -1,3 +1,6 @@
1
FROM mcr.microsoft.com/vscode/devcontainers/python:3.11
2
3
-RUN pip install dbt-duckdb==1.5.0 duckdb==0.7.1 recce
+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
@@ -1,7 +1,8 @@
{
"name": "Recce CodeSpace",
"build": {
- "dockerfile": "Dockerfile"
+ "dockerfile": "Dockerfile",
+ "context": "../../"
},
7
"features": {
8
"ghcr.io/devcontainers/features/github-cli:1": {}
0 commit comments