Guest author Amin Choroomi is an experienced software developer at Kinsta. His expertise lies in leveraging these transformative technologies to streamline deployment processes and enhance software scalability.

How we build Docker images and push them to Google Container Registry via CI pipelines with CircleCI and GitHub Actions. How we use CD pipelines to promote incremental changes to production using Docker images, Google Kubernetes Engine, and Cloud Deploy.

# Stage 2: copy the built version and build the production dependencies FROM node:18.15.0-alpine3.17 as production WORKDIR /opt/app COPY package.json yarn.lock./ RUN yarn install --production && yarn cache clean COPY --from=builder /opt/app/dist/./dist/

Related Articles