Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BetterIServ/BetterIServ.Mobile/Dockerfile

11 lines
245 B
Docker

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