This commit is contained in:
parent
4211805918
commit
8dabfd9645
2 changed files with 11 additions and 9 deletions
16
.vscode/tasks.json
vendored
16
.vscode/tasks.json
vendored
|
@ -3,34 +3,36 @@
|
|||
"tasks": [
|
||||
{
|
||||
"label": "install/update",
|
||||
"command": "deno task install",
|
||||
"command": "pnpm install",
|
||||
"type": "shell",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "dev",
|
||||
"command": "deno task dev",
|
||||
"command": "pnpm dev",
|
||||
"type": "shell",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "check",
|
||||
"command": "deno task check",
|
||||
"command": "pnpm check",
|
||||
"type": "shell",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "preview",
|
||||
"command": "deno task preview",
|
||||
"command": "pnpm preview",
|
||||
"type": "shell",
|
||||
"problemMatcher": [],
|
||||
"dependsOn": ["build"]
|
||||
"dependsOn": [
|
||||
"build"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "build",
|
||||
"command": "deno task build",
|
||||
"command": "pnpm build",
|
||||
"type": "shell",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
FROM docker.io/library/node AS build
|
||||
COPY . .
|
||||
ENV ASTRO_TELEMETRY_DISABLED=true
|
||||
RUN npm install
|
||||
RUN npm build
|
||||
RUN pnpm install
|
||||
RUN pnpm build
|
||||
|
||||
FROM git.swablab.de/swablab/documents AS documents
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue