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

Use ECR for image #195

Merged
merged 2 commits into from
Aug 19, 2022
Merged
Changes from 1 commit
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: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Allow specifiyng the different compute-tools tag, so we were able to always use
# the locally built image.
# Allow specifiyng different compute-tools tag and image repo, so we are
# able to use different images
ARG COMPUTE_TOOLS_TAG=latest
ARG IMAGE_REPO=369495373322.dkr.ecr.eu-central-1.amazonaws.com

#
# Image with pre-built tools
#
FROM neondatabase/compute-tools:$COMPUTE_TOOLS_TAG AS compute-deps
FROM $IMAGE_REPO/compute-tools:$COMPUTE_TOOLS_TAG AS compute-deps
# Only to get ready compute_ctl binary as deppendency

#
Expand Down