This commit is contained in:
Peter Maquiran
2022-09-27 14:52:01 +01:00
parent c8b984692e
commit c43f7b458a
7 changed files with 25 additions and 27 deletions
+11 -11
View File
@@ -1,15 +1,15 @@
FROM node:14 as build
WORKDIR /app
COPY ./package*.json /app/
RUN npm config set unsafe-perm true
RUN npm install -g ionic
RUN npm config set legacy-peer-deps true
RUN npm i -D typescript@4.3.5
RUN npm install --save --legacy-peer-deps
COPY ./ /app/
RUN ionic build --prod
# FROM node:14 as build
# WORKDIR /app
# COPY ./package*.json /app/
# RUN npm config set unsafe-perm true
# RUN npm install -g ionic
# RUN npm config set legacy-peer-deps true
# RUN npm i -D typescript@4.3.5
# RUN npm install --save --legacy-peer-deps
# COPY ./ /app/
# RUN ionic build --prod
FROM nginx:alpine
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
RUN rm -rf /usr/share/nginx/html/*
COPY --from=build /app/www/ /usr/share/nginx/html/
COPY /www/ /usr/share/nginx/html/