Skip to content

Instantly share code, notes, and snippets.

View beemi's full-sized avatar
Focusing

Raja Beemi beemi

Focusing
  • @UK
  • 19:16 (UTC -12:00)
View GitHub Profile
@beemi
beemi / gist:f47a2829e7f85a2c6a841d1d43dc2ffb
Last active August 5, 2024 20:07
linux-chrome-driver-docker.yaml
# Use Ubuntu 22.04 as the base image
FROM ubuntu:22.04
# Avoid prompts from apt
ENV DEBIAN_FRONTEND=noninteractive
# Set the ChromeDriver version
ENV CHROMEDRIVER_VERSION=114.0.5735.90
# Install essential packages
@beemi
beemi / deploy-prod.yml
Created October 3, 2021 15:13
Angular app Firebase Deployment Github actions
on:
push:
tags:
- 'v*'
name: Prod release
jobs:
release:
runs-on: ubuntu-latest
@beemi
beemi / Dockerfile
Created October 3, 2021 15:08
Angular APP Docker Image to Google Container Registry
name: Push Docker image
on:
push:
branches:
- master
env:
PROJECT_ID: ${{ secrets.GCP_PROD_SERVICE_PROJECT_ID }}
IMAGE_NAME: front-end-angular-app