Automate build of timelimit-server-ui docker image

This commit is contained in:
2026-01-24 14:14:06 +01:00
parent ab6fd7fc70
commit 7e669b522f
2 changed files with 113 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM nginx:alpine
LABEL maintainer="Kenneth van Ewijk (kennyboy55)"
LABEL timelimit-server-ui.sha="unknown"
RUN rm -rf /usr/share/nginx/html/*
WORKDIR /usr/share/nginx/html/
COPY dist/* ./
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]