fix(cicd): removes dockerfile specification
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 2s

This commit is contained in:
Jake 2024-12-19 17:11:27 -03:00
parent bb9c5af87c
commit da3ba338b8

View File

@ -11,10 +11,7 @@ jobs:
steps:
- name: Build the Docker Image
run: |
docker build \
-t sprout-db-migrations:latest \
-f Dockerfile \
.
docker build -t sprout-db-migrations:latest .
- name: Login to Container Registry
run: echo "${{ secrets.DOCKER_USERNAME }}:${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin ${{ secrets.DOCKER_REGISTRY }}