deployment_files
This commit is contained in:
+56
@@ -0,0 +1,56 @@
|
||||
#pulling from github
|
||||
FROM alpine/git:v2.30.1 AS code
|
||||
ARG BUILD_ID
|
||||
ARG GITEA_USER
|
||||
ARG GITEA_PASS
|
||||
ARG CACHEBUST
|
||||
RUN echo $BUILD_ID $CACHEBUST
|
||||
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/22sp11.git
|
||||
|
||||
#************* Stage 2 - Maven Build **************
|
||||
#FROM cirrusci/flutter:stable AS builder
|
||||
#FROM zekfad/flutter-builder:latest AS builder
|
||||
#FROM ghcr.io/cirruslabs/flutter:3.27.3 AS builder
|
||||
#FROM ghcr.io/cirruslabs/flutter:latest AS builder
|
||||
FROM ghcr.io/cirruslabs/flutter:3.41.1 AS builder
|
||||
LABEL stage=builder
|
||||
LABEL build=$BUILD_ID
|
||||
WORKDIR /app/22sp11
|
||||
#COPY --from=code /repo/22sp11/22sp11-frontendd-f/authsec_flutter/ /workspace/app/
|
||||
#COPY --from=code /repo/22sp11/ /workspace/app/
|
||||
COPY --from=code /repo/22sp11/ /app/22sp11
|
||||
#RUN rm -rf android
|
||||
WORKDIR 22sp11-frontendd-f/authsec_flutter
|
||||
RUN pwd
|
||||
#RUN flutter create -a kotlin -i swift .
|
||||
RUN flutter pub get
|
||||
#RUN ./remove_unused.sh
|
||||
RUN flutter clean
|
||||
RUN flutter pub get
|
||||
#RUN rm -rf android
|
||||
#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 http://risadmin_prod:adminprod1234@157.66.191.31:3000/risadmin_prod/22sp11.git
|
||||
RUN git checkout -b main
|
||||
#COPY --from=builder /app/22sp11/build/app/outputs/flutter-apk/app-release.apk /app
|
||||
COPY --from=builder /app/22sp11/22sp11-frontendd-f/authsec_flutter/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 http://157.66.191.31:3000/risadmin_prod/22sp11.git
|
||||
RUN git push http://risadmin_prod:adminprod1234@157.66.191.31:3000/risadmin_prod/22sp11.git
|
||||
#CMD ["flutter", "run", "--release"]
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
PRJ_NAME=22sp11-frontendd-f
|
||||
DOCKER_USER=risadmin_prod
|
||||
DOCKER_PASS=adminprod1234
|
||||
DOCKER_URL=157.66.191.31:3000
|
||||
#********************
|
||||
REPO_NAME=22sp11
|
||||
GITEA_USER=risadmin_prod
|
||||
GITEA_PASS=adminprod1234
|
||||
GITEA_EMAIL=ganeshk@dekatc.com
|
||||
GIT_BRANCH=main
|
||||
DOMAIN=157.66.191.31:3000
|
||||
#TARGET_PORT=9292
|
||||
PATH_DIR=/data/66396_1790077932422/sureops/22sp11-frontendd-f/deployment
|
||||
#**********************
|
||||
cd $PATH_DIR
|
||||
DOCKER_TAG=1.0
|
||||
docker system prune -f
|
||||
IMAGE_NAME=$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||
# Stop any existing containers with the same name and ports
|
||||
docker stop $PRJ_NAME >/dev/null 2>&1 || true
|
||||
docker rm $PRJ_NAME >/dev/null 2>&1 || true
|
||||
# Build and push the Docker image
|
||||
DOCKER_BUILDKIT=1 docker build -t $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG --build-arg BUILD_ID=$DOCKER_TAG --build-arg CACHEBUST=$(date +%s) --build-arg GITEA_PASS=$GITEA_PASS .
|
||||
docker login --username=$DOCKER_USER --password=$DOCKER_PASS $DOCKER_URL
|
||||
docker tag $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME
|
||||
docker push $DOCKER_URL/$DOCKER_USER/$PRJ_NAME:$DOCKER_TAG
|
||||
docker logout $DOCKER_URL
|
||||
docker system prune -f
|
||||
# Deploy the image in a Docker container
|
||||
echo "Image deployed in container $PRJ_NAME"
|
||||
|
||||
curl -X GET "http://157.66.191.31:31123/sureops/suredocker/updaterepo?repoName=$REPO_NAME&packageName=$PRJ_NAME"
|
||||
Reference in New Issue
Block a user