Skip to content

Add trust proxy setting to express server #15

Add trust proxy setting to express server

Add trust proxy setting to express server #15

name: API - DEV - Build and Docker Push
on:
push:
branches:
- development
paths:
- 'api/**'
workflow_dispatch:
env:
DOCKER_IMAGE: prasadhonrao/devcamper-webapi
AZURE_WEBAPP_NAME: devcamper-webapi
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
run: |
docker build -t ${{ env.DOCKER_IMAGE }}:${{ github.sha }} -f api/Dockerfile api
docker tag ${{ env.DOCKER_IMAGE }}:${{ github.sha }} ${{ env.DOCKER_IMAGE }}:latest
docker push ${{ env.DOCKER_IMAGE }}:${{ github.sha }}
docker push ${{ env.DOCKER_IMAGE }}:latest