2025-03-21 04:03:56 +00:00
|
|
|
#pulling from github
|
|
|
|
|
FROM alpine/git:v2.30.1 AS code
|
|
|
|
|
ARG BUILD_ID
|
|
|
|
|
ARG GITEA_USER
|
|
|
|
|
ARG GITEA_PASS
|
|
|
|
|
RUN echo $BUILD_ID
|
|
|
|
|
LABEL stage=builder
|
|
|
|
|
LABEL build_id=$BUILD_ID
|
|
|
|
|
RUN mkdir repo
|
|
|
|
|
WORKDIR /repo
|
|
|
|
|
RUN git clone http://risadmin_prod:adminprod1234@157.66.191.31:3000/risadmin_prod/flutter1.git
|
|
|
|
|
|
|
|
|
|
#************* Stage 2 - Maven Build **************
|
|
|
|
|
#FROM cirrusci/flutter:stable AS builder
|
|
|
|
|
#FROM zekfad/flutter-builder:latest AS builder
|
2025-03-21 04:20:54 +00:00
|
|
|
#FROM ghcr.io/cirruslabs/flutter:3.24.3 AS builder
|
|
|
|
|
FROM ghcr.io/cirruslabs/flutter:3.25.0 AS builder # Check the latest version
|
|
|
|
|
|
2025-03-21 04:03:56 +00:00
|
|
|
LABEL stage=builder
|
|
|
|
|
LABEL build=$BUILD_ID
|
|
|
|
|
WORKDIR /app/flutter1
|
|
|
|
|
#COPY --from=code /repo/flutter1/flutter1-front-f/authsec_flutterNewUi/base_project/ /workspace/app/
|
|
|
|
|
#COPY --from=code /repo/flutter1/ /workspace/app/
|
|
|
|
|
COPY --from=code /repo/flutter1/ /app/flutter1
|
|
|
|
|
RUN rm -rf android
|
|
|
|
|
WORKDIR flutter1-front-f/authsec_flutterNewUi/base_project
|
|
|
|
|
RUN pwd
|
|
|
|
|
#RUN flutter create -a kotlin -i swift .
|
|
|
|
|
RUN flutter pub get
|
|
|
|
|
RUN ./remove_unused.sh
|
|
|
|
|
RUN flutter clean
|
2025-03-21 04:20:54 +00:00
|
|
|
RUN dart --disable-analytics && \
|
|
|
|
|
dart --version && \
|
|
|
|
|
dart pub upgrade
|
|
|
|
|
|
2025-03-21 04:03:56 +00:00
|
|
|
RUN flutter pub get
|
|
|
|
|
#RUN flutter build apk --split-per-abi
|
|
|
|
|
RUN flutter build apk --target-platform android-arm64
|
|
|
|
|
#RUN flutter build apk --release
|
|
|
|
|
#******** Stage 3 - Git Push*********
|
|
|
|
|
#FROM java:8-jdk-alpine
|
|
|
|
|
FROM alpine/git:v2.30.1 AS push
|
|
|
|
|
RUN mkdir app
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
RUN git config --global user.email ganeshk@dekatc.com
|
|
|
|
|
RUN git config --global user.name risadmin_prod
|
|
|
|
|
RUN git init
|
|
|
|
|
RUN git pull https://risadmin_prod:adminprod1234@157.66.191.31:3000/risadmin_prod/flutter1.git
|
|
|
|
|
RUN git checkout -b main
|
|
|
|
|
#COPY --from=builder /app/flutter1/build/app/outputs/flutter-apk/app-release.apk /app
|
|
|
|
|
COPY --from=builder /app/flutter1/flutter1-front-f/authsec_flutterNewUi/base_project/build/app/outputs/flutter-apk/ /app
|
|
|
|
|
RUN git add .
|
|
|
|
|
#RUN git checkout -b main
|
|
|
|
|
RUN git commit -m "Apk file commit"
|
|
|
|
|
RUN git remote add origin https://157.66.191.31:3000/risadmin_prod/flutter1.git
|
|
|
|
|
RUN git push https://risadmin_prod:adminprod1234@157.66.191.31:3000/risadmin_prod/flutter1.git
|
|
|
|
|
CMD ["flutter", "run", "--release"]
|