canti primo tag

This commit is contained in:
David Frassi
2026-05-16 17:24:59 +02:00
commit 0c33fc6fcf
106 changed files with 28210 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:22-bullseye
# Install Ionic CLI
RUN npm install -g @ionic/cli @angular/cli
# Set working directory
WORKDIR /app
# Expose ports for Ionic dev server and live reload
EXPOSE 8100 8101 35729
# Start command (will be overridden by docker-compose for initial setup)
CMD ["ionic", "serve", "--host", "0.0.0.0", "--port", "8100"]