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": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "install/update",
|
"label": "install/update",
|
||||||
"command": "deno task install",
|
"command": "pnpm install",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "dev",
|
"label": "dev",
|
||||||
"command": "deno task dev",
|
"command": "pnpm dev",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "check",
|
"label": "check",
|
||||||
"command": "deno task check",
|
"command": "pnpm check",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "preview",
|
"label": "preview",
|
||||||
"command": "deno task preview",
|
"command": "pnpm preview",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"dependsOn": ["build"]
|
"dependsOn": [
|
||||||
|
"build"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "build",
|
"label": "build",
|
||||||
"command": "deno task build",
|
"command": "pnpm build",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -1,8 +1,8 @@
|
||||||
FROM docker.io/library/node AS build
|
FROM docker.io/library/node AS build
|
||||||
COPY . .
|
COPY . .
|
||||||
ENV ASTRO_TELEMETRY_DISABLED=true
|
ENV ASTRO_TELEMETRY_DISABLED=true
|
||||||
RUN npm install
|
RUN pnpm install
|
||||||
RUN npm build
|
RUN pnpm build
|
||||||
|
|
||||||
FROM git.swablab.de/swablab/documents AS documents
|
FROM git.swablab.de/swablab/documents AS documents
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue