Skip to content

Use base image from public ECR #6

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

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

*The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).*


## [3.5.6] - 2025-03-12
### Changed
- Replaces docker hub image with ecr image

## [3.5.5] - 2024-02-09
### Changed
- Added `recalculate_checksum` subcommand, introducing recalculate checksum scripts
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM public.ecr.aws/docker/library/python:3.9

RUN pip install schemachange

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile-src
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM public.ecr.aws/docker/library/python:3.9

WORKDIR /build

Expand All @@ -10,7 +10,7 @@ RUN pip3 install --upgrade setuptools wheel
RUN python3 setup.py bdist_wheel


FROM python:3.9
FROM public.ecr.aws/docker/library/python:3.9

COPY --from=0 /build/dist/schemachange-*-py3-none-any.whl /tmp/
RUN pip3 install /tmp/schemachange-*-py3-none-any.whl && rm /tmp/schemachange-*-py3-none-any.whl
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Jinja2~=3.0
pandas~=1.3
numpy==1.21.6
PyYAML~=6.0
snowflake-connector-python>=2.8,<4.0
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = schemachange
version = 3.5.5
version = 3.5.6
author = jamesweakley/jeremiahhansen
description = A Database Change Management tool for Snowflake
long_description = file: README.md
Expand All @@ -19,6 +19,7 @@ install_requires =
snowflake-connector-python>=2.8,<4.0
pandas~=1.3
pyyaml~=6.0
numpy==1.21.6
jinja2~=3.0
include_package_data = True

Expand Down