Skip to content

Refactor Dockerfile to remove 'file' utility installation and update … #8

Refactor Dockerfile to remove 'file' utility installation and update …

Refactor Dockerfile to remove 'file' utility installation and update … #8

Workflow file for this run

name: Deploy to AWS Lambda
on:
push:
branches:
- main
jobs:
deploy:
name: Build and Deploy
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # Required for AWS OIDC authentication
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Run Deployment Script
run: ./deploy-working.sh