diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 16cc9c7..6686295 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -21,6 +21,8 @@ "vscode": { "extensions": [ "charliermarsh.ruff", + "ms-python.debugpy", + "ms-python.python", "Vue.volar" ] } diff --git a/.vscode/launch.json b/.vscode/launch.json index deaaa01..855ea2f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "configurations": [ { "name": "BugHog", - "type": "python", + "type": "debugpy", "request": "launch", "program": "/app/bci/app.py", "purpose": [ diff --git a/Dockerfile b/Dockerfile index 8574700..570d62c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine as ui-build-stage +FROM node:22.12-alpine as ui-build-stage WORKDIR /app COPY /bci/web/vue/package*.json ./ RUN npm install diff --git a/scripts/build.sh b/scripts/build.sh index 10b7a20..67b1f10 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,3 +1,3 @@ #!/bin/sh -exec docker compose build +exec docker compose build --pull