Archived
Private
Public Access
1
0

v0.1.1 (added substitution functions + switched to pwa)

This commit is contained in:
2023-05-01 16:06:44 +02:00
parent e55cbfe4c6
commit f8c0f5d288
86 changed files with 148 additions and 993 deletions

View File

@@ -0,0 +1,10 @@
FROM node:18-slim as node
WORKDIR /app
COPY . .
RUN npm install
RUN npm install -g @ionic/cli
RUN ionic build --prod
FROM nginx:1.17.1-alpine
COPY nginx.conf /etc/nginx/sites-available/default
COPY --from=node /app/www /usr/share/nginx/html