This repository was archived by the owner on Jan 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +14
-9
lines changed Expand file tree Collapse file tree 4 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 1
1
# IBM Functions Python 3.6 Runtime Container
2
2
3
+ ## 1.25.1
4
+ Changes:
5
+ - Catch latest security fixes with each build.
6
+
7
+
3
8
## 1.25.0
4
9
Changes:
5
10
- update to new base image
Original file line number Diff line number Diff line change @@ -5,8 +5,10 @@ ENV FLASK_PROXY_PORT 8080
5
5
COPY requirements.txt requirements.txt
6
6
7
7
RUN apt-get update \
8
+ # Upgrade installed packages to get latest security fixes if the base image does not contain them already.
9
+ && apt-get upgrade -y --no-install-recommends \
8
10
# add some packages required for the pip install
9
- && apt-get install -y \
11
+ && apt-get install -y --no-install-recommends \
10
12
gcc \
11
13
libc-dev \
12
14
libxslt-dev \
@@ -16,12 +18,6 @@ RUN apt-get update \
16
18
zip \
17
19
unzip \
18
20
vim \
19
- # add secutity updates for certain packages
20
- && apt-get install -y \
21
- e2fsprogs \
22
- openssl \
23
- tzdata \
24
- libgcrypt20 \
25
21
# cleanup package lists, they are not used anymore in this image
26
22
&& rm -rf /var/lib/apt/lists/* \
27
23
&& apt-cache search linux-headers-generic \
Original file line number Diff line number Diff line change 1
1
# IBM Functions Python 3.7 Runtime Container
2
2
3
+ ## 1.14.1
4
+ Changes:
5
+ - Catch latest security fixes with each build.
6
+
3
7
## 1.14.0
4
8
Changes:
5
9
- update to new base image
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ FROM openwhisk/actionloop-python-v3.7:248efb5
3
3
COPY requirements.txt requirements.txt
4
4
5
5
RUN apt-get update \
6
- # add secutity updates for certain packages
7
- && apt-get install -y --no-install-recommends file git curl \
6
+ # Upgrade installed packages to get latest security fixes if the base image does not contain them already.
7
+ && apt-get upgrade -y --no-install-recommends \
8
8
# cleanup package lists, they are not used anymore in this image
9
9
&& rm -rf /var/lib/apt/lists/* \
10
10
# We do not have mysql-server installed but mysql-common contains config files (/etc/mysql/my.cnf) for it.
You can’t perform that action at this time.
0 commit comments