add a frontend container

This commit is contained in:
2026-01-27 15:52:56 +01:00
parent 14e8aa80a9
commit 6d45c131c7
7 changed files with 94 additions and 21 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM node:20-alpine
WORKDIR /app
RUN apk add --no-cache git bash
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD ["build"]