From 6e505b2f32467af5852928215d2dc18d26917824 Mon Sep 17 00:00:00 2001 From: Nicolas Cantu Date: Wed, 27 Aug 2025 15:13:32 +0200 Subject: [PATCH] =?UTF-8?q?chore(release):=20latest=200.1.0=20+=20s=C3=A9c?= =?UTF-8?q?urit=C3=A9/CI/docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 12 ++++++++++++ Dockerfile | 7 +++++++ 2 files changed, 19 insertions(+) create mode 100644 Dockerfile diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d12c06b..eeed764 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -253,6 +253,18 @@ jobs: echo "No version alignment script (ok)" fi + docker-build: + name: Docker Build + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Setup Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build Docker image + run: | + docker build -t 4nk-wallet:latest . + - name: Release guard (CI verify) env: RELEASE_TYPE: ci-verify diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..400fa0f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +# Debian-based static web host via http-server +FROM node:20-bookworm-slim +WORKDIR /app +COPY web ./web +RUN npm i -g http-server +EXPOSE 5174 +CMD ["http-server","./web","-p","5174","-c-1"]