Skip to content

Update Dockerfile to use 2.7.5 #7

Update Dockerfile to use 2.7.5

Update Dockerfile to use 2.7.5 #7

Workflow file for this run

name: Docker Build and Push
on:
push:
branches:
- master # Set your default branch here
- pre
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
push: true
tags: dreamteammobile/gitlab-runner-heroku-dpl:${{ github.ref == 'refs/heads/pre' && 'pre' || 'latest' }}