Skip to content

removed rendundant nginx service from Dockerfile; using only nginx as… #8

removed rendundant nginx service from Dockerfile; using only nginx as…

removed rendundant nginx service from Dockerfile; using only nginx as… #8

name: Build and Push Docker Images
on:
push:
branches:
- Dockerized
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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 coupling_tool image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: darioamorosodaragona/coupling_tool:latest
- name: Build and push celery_worker image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: darioamorosodaragona/celery_worker:latest