Skip to content

Commit 50e219c

Browse files
committed
feat: updating to python 3.7.8
1 parent d8c49d0 commit 50e219c

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

‎build-dockerfiles.sh‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ set -e
88
# We want same base version with, or without cuda
99
# For now, it will be ubuntu 18.04
1010
declare -A config_from_type
11-
config_from_type["cpu"]='ubuntu:18.04@sha256:3235326357dfb65f1781dbc4df3b834546d8bf914e82cce58e6e6b676e23ce8f'
12-
config_from_type["gpu"]='nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04@sha256:d3f5d6e8fe105dadb55aef7c80191d6281bbd18989a05124b108b7c8a522a5ad'
11+
config_from_type["cpu"]='ubuntu:18.04@sha256:86510528ab9cd7b64209cbbe6946e094a6d10c6db21def64a93ebdd20011de1d'
12+
config_from_type["gpu"]='nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04@sha256:28e9fbacfd7c90a591cf5dceb30c1f35cc2a1a02f9fa225a9a1491526846b604'
1313

1414
TENSORT_RT_6_PACKAGES="libnvinfer6=6.0.1-1+cuda10.2 libnvinfer-dev=6.0.1-1+cuda10.2 libnvinfer-plugin6=6.0.1-1+cuda10.2 libnvinfer-plugin-dev=6.0.1-1+cuda10.2"
1515

‎dockerfiles/3.7/cpu/Dockerfile‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DO NOT MODIFY MANUALLY
22
# GENERATED FROM SCRIPTS
3-
FROM ubuntu:18.04@sha256:3235326357dfb65f1781dbc4df3b834546d8bf914e82cce58e6e6b676e23ce8f
3+
FROM ubuntu:18.04@sha256:86510528ab9cd7b64209cbbe6946e094a6d10c6db21def64a93ebdd20011de1d
44

55
# Avoid tzdata interactive action
66
ENV DEBIAN_FRONTEND noninteractive
@@ -9,7 +9,7 @@ ENV DEBIAN_FRONTEND noninteractive
99

1010
# Dockerfile generated fragment to install Python and Pip
1111
# Source: https://raw.githubusercontent.com/docker-library/python/master/3.7/buster/slim/Dockerfile
12-
# Python: 3.7.7
12+
# Python: 3.7.8
1313
# Pip: 20.1.1
1414

1515

@@ -29,7 +29,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2929
&& rm -rf /var/lib/apt/lists/*
3030

3131
ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
32-
ENV PYTHON_VERSION 3.7.7
32+
ENV PYTHON_VERSION 3.7.8
3333

3434
RUN set -ex \
3535
\

‎dockerfiles/3.7/gpu/Dockerfile‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DO NOT MODIFY MANUALLY
22
# GENERATED FROM SCRIPTS
3-
FROM nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04@sha256:d3f5d6e8fe105dadb55aef7c80191d6281bbd18989a05124b108b7c8a522a5ad
3+
FROM nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04@sha256:28e9fbacfd7c90a591cf5dceb30c1f35cc2a1a02f9fa225a9a1491526846b604
44

55
# Avoid tzdata interactive action
66
ENV DEBIAN_FRONTEND noninteractive
@@ -9,7 +9,7 @@ ENV DEBIAN_FRONTEND noninteractive
99

1010
# Dockerfile generated fragment to install Python and Pip
1111
# Source: https://raw.githubusercontent.com/docker-library/python/master/3.7/buster/slim/Dockerfile
12-
# Python: 3.7.7
12+
# Python: 3.7.8
1313
# Pip: 20.1.1
1414

1515

@@ -29,7 +29,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2929
&& rm -rf /var/lib/apt/lists/*
3030

3131
ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
32-
ENV PYTHON_VERSION 3.7.7
32+
ENV PYTHON_VERSION 3.7.8
3333

3434
RUN set -ex \
3535
\

‎dockerfiles/3.8/cpu/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DO NOT MODIFY MANUALLY
22
# GENERATED FROM SCRIPTS
3-
FROM ubuntu:18.04@sha256:3235326357dfb65f1781dbc4df3b834546d8bf914e82cce58e6e6b676e23ce8f
3+
FROM ubuntu:18.04@sha256:86510528ab9cd7b64209cbbe6946e094a6d10c6db21def64a93ebdd20011de1d
44

55
# Avoid tzdata interactive action
66
ENV DEBIAN_FRONTEND noninteractive

‎dockerfiles/3.8/gpu/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DO NOT MODIFY MANUALLY
22
# GENERATED FROM SCRIPTS
3-
FROM nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04@sha256:d3f5d6e8fe105dadb55aef7c80191d6281bbd18989a05124b108b7c8a522a5ad
3+
FROM nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04@sha256:28e9fbacfd7c90a591cf5dceb30c1f35cc2a1a02f9fa225a9a1491526846b604
44

55
# Avoid tzdata interactive action
66
ENV DEBIAN_FRONTEND noninteractive

0 commit comments

Comments
 (0)