feat(init)!: create sulej.ch

This commit is contained in:
2025-10-12 15:48:10 +02:00
commit 40c353ff4e
33 changed files with 3846 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM ghcr.io/arlind-dev/sulej.ch:build-latest AS build
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
COPY --from=build /output ./
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]