fix(docker): add build directive to compose and add .dockerignore file
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 20s

This commit is contained in:
Daniel S
2026-08-08 19:24:04 +02:00
parent 614a66fc70
commit 5b0f05c17f
2 changed files with 6 additions and 0 deletions

5
.dockerignore Normal file
View File

@@ -0,0 +1,5 @@
node_modules
.git
.astro
dist
.agents

View File

@@ -1,5 +1,6 @@
services: services:
website: website:
build: .
image: gitea.hephex.de/daniel/websitedummy:latest image: gitea.hephex.de/daniel/websitedummy:latest
container_name: websitedummy_app container_name: websitedummy_app
restart: always restart: always