Skip to content

Instantly share code, notes, and snippets.

View dcoder2099's full-sized avatar

Daniel Hedrick dcoder2099

View GitHub Profile
@dcoder2099
dcoder2099 / bitbucket-pipelines.yml
Created August 12, 2024 16:29 — forked from carlok/bitbucket-pipelines.yml
How to force BitBucket to push a Docker image to AWS ECR after a git tag
#image: atlassian/default-image:2
image: python:3.7.3
pipelines:
tags:
'v*': # the tag is "vSomthing" like "v-0.4.2"
- step:
name: Build docker image and push to AWS ECR
services:
- docker