Skip to content

Commit 73c923e

Browse files
authored
fix: update dockerfile base image to 3.9 (#112)
* fix: update dockerfile base image to 3.9 * fix: local manual test with latest image
1 parent 4d0d8d1 commit 73c923e

8 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.10.1] - 2023-01-23
9+
### Fixed
10+
- [#112](https://github.com/unity-sds/unity-data-services/pull/112) update dockerfile base images
11+
812
## [1.10.0] - 2022-12-19
913
### Added
1014
- [#104](https://github.com/unity-sds/unity-data-services/pull/104) added Updated time in collection & item STAC dictionaries

docker/Dockerfile.jpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM cae-artifactory.jpl.nasa.gov:17001/python:3.7
1+
FROM cae-artifactory.jpl.nasa.gov:17001/python:3.9
22
MAINTAINER Wai Phyo <wai.phyo@jpl.nasa.gov>
33
RUN apt-get update -y && apt-get install vim -y
44

docker/Dockerfile.public

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7
1+
FROM python:3.9
22
MAINTAINER Wai Phyo <wai.phyo@jpl.nasa.gov>
33
RUN apt-get update -y && apt-get install vim -y
44

docker/Dockerfile_download_granules.jpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM cae-artifactory.jpl.nasa.gov:17001/python:3.7
1+
FROM cae-artifactory.jpl.nasa.gov:17001/python:3.9
22
MAINTAINER Wai Phyo <wai.phyo@jpl.nasa.gov>
33
RUN apt-get update -y && apt-get install vim -y
44

docker/Dockerfile_download_granules.public

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7
1+
FROM python:3.9
22
MAINTAINER Wai Phyo <wai.phyo@jpl.nasa.gov>
33
RUN apt-get update -y && apt-get install vim -y
44

docker/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
- building docker file for Granules Download
22

3-
docker build -f ./docker/Dockerfile_download_granules.jpl -t cumulus_unity:1.0.0-t1 .
3+
docker build -f ./docker/Dockerfile_download_granules.jpl -t cumulus_unity:1.10.1-t1 .
44

55
- running docker file for Granules Download
66
- update the environment variables

docker/docker-compose-granules-upload.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.7"
22
services:
33
cumulus_granules_upload:
4-
image: ghcr.io/unity-sds/unity-data-services:1.7.0
4+
image: ghcr.io/unity-sds/unity-data-services:1.10.1
55
volumes:
66
- /tmp/snpp_upload_test_1:/etc/snpp_upload_test_1
77
command: ["upload"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name="cumulus_lambda_functions",
20-
version="1.10.0",
20+
version="1.10.1",
2121
packages=find_packages(),
2222
install_requires=install_requires,
2323
tests_require=['mock', 'nose', 'sphinx', 'sphinx_rtd_theme', 'coverage', 'pystac', 'python-dotenv', 'jsonschema'],

0 commit comments

Comments
 (0)