chore(release): latest 0.1.0 + sécurité/CI/docs
Some checks failed
4NK Template Sync / check-and-sync (push) Failing after 1s

This commit is contained in:
Nicolas Cantu 2025-08-27 15:13:32 +02:00
parent 880fe3857e
commit 6e505b2f32
2 changed files with 19 additions and 0 deletions

View File

@ -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

7
Dockerfile Normal file
View File

@ -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"]