Use Gitea actions instead of woodpecker
All checks were successful
build

This commit is contained in:
2023-03-27 23:54:12 +02:00
parent eb911056ba
commit 25dca8a869
5 changed files with 82 additions and 50 deletions

7
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM nginx:latest
COPY ./frontend/index.html /usr/share/nginx/html/index.html
COPY ./frontend/index.css /usr/share/nginx/html/index.css
COPY ./frontend/index.js /usr/share/nginx/html/index.js
HEALTHCHECK --interval=1m --timeout=3s CMD curl --fail http://localhost/ || exit 1