Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix docker push #190

Merged
merged 7 commits into from
Sep 2, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,19 @@ test: test_unit lint mypy

.PHONY: image
image:
docker build -f public.Dockerfile -t ${IMAGE}:${VERSION} .
docker tag ${IMAGE}:${VERSION} ${IMAGE}:latest
docker build -f public.Dockerfile -t ${IMAGE}:latest .

.PHONY: image-version
image-version:
docker build -f public.Dockerfile -t ${IMAGE}:${VERSION} .

.PHONY: push-image-version
push-image-version:
docker push ${IMAGE}:${VERSION} .
docker push ${IMAGE}:${VERSION}

.PHONY: push-image
push-image:
docker push ${IMAGE}:latest .
docker push ${IMAGE}:latest

.PHONY: oidc-image
oidc-image:
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/api/table/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright Contributors to the Amundsen project.
# SPDX-License-Identifier: Apache-2.0