From 58a86a7cf897a8b82fe5c7bf866fa36bd8a56517 Mon Sep 17 00:00:00 2001 From: Michael Heilman Date: Thu, 15 Aug 2024 13:41:50 -0500 Subject: [PATCH 1/2] Fix terminal access --- CHANGELOG.md | 5 +++++ Dockerfile | 2 +- buildspec/push.yaml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3514032..cd0bdce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +# [3.0.1] - 2024-08-15 + +### Fixed +- civis-jupyter-notebook -> 2.2.1 to fix terminal access + # [3.0.0] - 2024-08-13 ### Changed diff --git a/Dockerfile b/Dockerfile index 4467d27..4605e4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL org.opencontainers.image.authors="support@civisanalytics.com" ENV DEFAULT_KERNEL=ir \ TINI_VERSION=v0.19.0 \ - CIVIS_JUPYTER_NOTEBOOK_VERSION=2.2.0 + CIVIS_JUPYTER_NOTEBOOK_VERSION=2.2.1 RUN DEBIAN_FRONTEND=noninteractive apt-get update -y && \ apt-get install -y --no-install-recommends \ diff --git a/buildspec/push.yaml b/buildspec/push.yaml index 2c60aec..64e806a 100644 --- a/buildspec/push.yaml +++ b/buildspec/push.yaml @@ -14,8 +14,8 @@ phases: - docker build --tag ${FIPS_REPOSITORY_URI}:${COMMIT_HASH_SHORT} --tag ${FIPS_REPOSITORY_URI}:${BRANCH_NAME} . # This config tests the codebuild login and the build but does not push dev images. # The following lines can be temporarily uncommented to test a dev image. - # - docker push ${FIPS_REPOSITORY_URI}:${COMMIT_HASH_SHORT} - # - docker push ${FIPS_REPOSITORY_URI}:${BRANCH_NAME} + - docker push ${FIPS_REPOSITORY_URI}:${COMMIT_HASH_SHORT} + - docker push ${FIPS_REPOSITORY_URI}:${BRANCH_NAME} post_build: commands: - echo Build completed! From 62be0564dddef82a7aac65707407e34e1bf62283 Mon Sep 17 00:00:00 2001 From: Michael Heilman Date: Thu, 15 Aug 2024 13:42:15 -0500 Subject: [PATCH 2/2] comment out docker push in push.yaml --- buildspec/push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildspec/push.yaml b/buildspec/push.yaml index 64e806a..2c60aec 100644 --- a/buildspec/push.yaml +++ b/buildspec/push.yaml @@ -14,8 +14,8 @@ phases: - docker build --tag ${FIPS_REPOSITORY_URI}:${COMMIT_HASH_SHORT} --tag ${FIPS_REPOSITORY_URI}:${BRANCH_NAME} . # This config tests the codebuild login and the build but does not push dev images. # The following lines can be temporarily uncommented to test a dev image. - - docker push ${FIPS_REPOSITORY_URI}:${COMMIT_HASH_SHORT} - - docker push ${FIPS_REPOSITORY_URI}:${BRANCH_NAME} + # - docker push ${FIPS_REPOSITORY_URI}:${COMMIT_HASH_SHORT} + # - docker push ${FIPS_REPOSITORY_URI}:${BRANCH_NAME} post_build: commands: - echo Build completed!