UNCLASSIFIED
Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Ironbank Containers
O
Opensource
python
python36
Commits
05d60171
Commit
05d60171
authored
May 26, 2021
by
Vickie Shen
Browse files
rebuilt
parent
0e30bbca
Pipeline
#279690
failed with stages
in 37 minutes and 2 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
125 additions
and
42 deletions
+125
-42
Dockerfile
Dockerfile
+74
-23
LICENSE
LICENSE
+11
-11
README.md
README.md
+1
-1
hardening_manifest.yaml
hardening_manifest.yaml
+15
-5
renovate.json
renovate.json
+24
-2
No files found.
Dockerfile
View file @
05d60171
...
@@ -2,35 +2,86 @@ ARG BASE_REGISTRY=registry1.dso.mil
...
@@ -2,35 +2,86 @@ ARG BASE_REGISTRY=registry1.dso.mil
ARG
BASE_IMAGE=ironbank/redhat/ubi/ubi8
ARG
BASE_IMAGE=ironbank/redhat/ubi/ubi8
ARG
BASE_TAG=8.4
ARG
BASE_TAG=8.4
FROM
${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} as build
RUN
dnf upgrade
-y
--nodocs
&&
\
dnf
install
-y
--nodocs
\
bzip2-devel
\
expat-devel
\
gcc
\
libffi-devel
\
libuuid-devel
\
make
\
openssl-devel
\
sqlite-devel
\
xz-devel
&&
\
dnf clean all
&&
\
rm
-rf
/var/cache/dnf
COPY
python.tar.gz /
RUN
mkdir
-p
/usr/local/src/python
&&
\
tar
-xzvf
python.tar.gz
-C
/usr/local/src/python
--strip-components
=
1
&&
\
cd
/usr/local/src/python
&&
\
./configure
\
--enable-loadable-sqlite-extensions
\
--enable-optimizations
\
--enable-option-checking
=
fatal
\
--enable-shared
\
--with-system-expat
\
--with-ensurepip
&&
\
make
&&
\
make altinstall
RUN
find /usr/local
-depth
\
\(
\
\(
-type
d
-a
\(
-name
test
-o
-name
tests
-o
-name
idle_test
\)
\)
\
-o
\(
-type
f
-a
\(
-name
'*.pyc'
-o
-name
'*.pyo'
-o
-name
'*.a'
\)
\)
\
\)
-exec
rm
-rf
'{}'
+
&&
\
echo
'/usr/local/lib'
>
/etc/ld.so.conf
&&
\
ldconfig
COPY
pip-21.1.2-py3-none-any.whl /
COPY
setuptools-56.1.0-py3-none-any.whl /
COPY
wheel-0.36.2-py2.py3-none-any.whl /
RUN
python3.6
-m
pip
install
--no-index
--upgrade
/pip-21.1.2-py3-none-any.whl
&&
\
python3.6
-m
pip
install
--no-index
--upgrade
/setuptools-56.1.0-py3-none-any.whl
&&
\
python3.6
-m
pip
install
--no-index
--upgrade
/wheel-0.36.2-py2.py3-none-any.whl
FROM
${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
FROM
${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
COPY
python.tar.gz pip-21.0.1-py3-none-any.whl /opt
RUN
dnf update
-y
--nodocs
&&
\
ENV
PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/python
RUN
dnf upgrade
-y
&&
\
dnf
install
-y
make gcc openssl-devel bzip2-devel libffi-devel
&&
\
cd
/opt
&&
\
mkdir
/opt/python
&&
\
tar
-xzf
python.tar.gz
--strip-components
=
1
-C
/opt/python
&&
\
rm
-f
python.tar.gz
&&
\
cd
python
&&
\
./configure
--enable-optimizations
&&
\
make altinstall
&&
\
python
-m
pip
install
--no-index
--upgrade
/opt/pip-21.0.1-py3-none-any.whl
&&
\
ln
-s
/opt/python/python /usr/bin/python3
&&
\
rm
-f
/opt/pip-21.0.1-py3-none-any.whl
&&
\
dnf
-y
remove gcc make openssl-devel bzip2-devel libffi-devel
&&
\
find /opt/python
-name
"*.pem"
-o
-name
"*.key"
| xargs
rm
-f
&&
\
find /usr/local/lib/python3.6/test
-name
"*.pem"
-o
-name
"*.key"
| xargs
rm
-f
&&
\
dnf clean all
&&
\
dnf clean all
&&
\
rm
-rf
/var/cache/dnf
rm
-rf
/var/cache/dnf
RUN
groupadd
-g
1001 python3
&&
\
#ENV PATH /usr/local/bin:$PATH
useradd
-r
-u
1001
-m
-s
/sbin/nologin
-g
python3 python3
USER
python3
COPY
--from=build /usr/local/include/python3.6 /usr/local/include/python3.6
COPY
--from=build /usr/local/lib /usr/local/lib
COPY
--from=build /usr/local/bin /usr/local/bin
HEALTHCHECK
none
RUN
cd
/usr/local/bin
&&
\
ln
-s
idle3.6 idle3
&&
\
ln
-s
idle3 idle
&&
\
ln
-s
pydoc3.6 pydoc3
&&
\
ln
-s
pydoc3 pydoc
&&
\
ln
-s
python3.6 python3
&&
\
ln
-s
python3 python
&&
\
ln
-s
python3.6-config python3-config
&&
\
ln
-s
python3-config python-config
&&
\
ln
-s
easy_install-3.6 easy_install-3
&&
\
ln
-s
easy_install-3 easy_install
&&
\
ln
-s
2to3-3.6 2to3-3
&&
\
ln
-s
2to3-3 2to3
&&
\
echo
'/usr/local/lib'
>
/etc/ld.so.conf
&&
\
ldconfig
RUN
groupadd
-g
1001 python
&&
\
useradd
-r
-u
1001
-m
-s
/sbin/nologin
-g
python python
USER
1001
CMD
["python3"]
CMD
["python3"]
HEALTHCHECK
NONE
LICENSE
View file @
05d60171
PSF LICENSE AGREEMENT FOR PYTHON 3.6.1
2
PSF LICENSE AGREEMENT FOR PYTHON 3.6.1
3
1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and
1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and
the Individual or Organization ("Licensee") accessing and otherwise using Python
the Individual or Organization ("Licensee") accessing and otherwise using Python
3.6.1
2
software in source or binary form and its associated documentation.
3.6.1
3
software in source or binary form and its associated documentation.
2. Subject to the terms and conditions of this License Agreement, PSF hereby
2. Subject to the terms and conditions of this License Agreement, PSF hereby
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
analyze, test, perform and/or display publicly, prepare derivative works,
analyze, test, perform and/or display publicly, prepare derivative works,
distribute, and otherwise use Python 3.6.1
2
alone or in any derivative
distribute, and otherwise use Python 3.6.1
3
alone or in any derivative
version, provided, however, that PSF's License Agreement and PSF's notice of
version, provided, however, that PSF's License Agreement and PSF's notice of
copyright, i.e., "Copyright © 2001-2020 Python Software Foundation; All Rights
copyright, i.e., "Copyright © 2001-2020 Python Software Foundation; All Rights
Reserved" are retained in Python 3.6.1
2
alone or in any derivative version
Reserved" are retained in Python 3.6.1
3
alone or in any derivative version
prepared by Licensee.
prepared by Licensee.
3. In the event Licensee prepares a derivative work that is based on or
3. In the event Licensee prepares a derivative work that is based on or
incorporates Python 3.6.1
2
or any part thereof, and wants to make the
incorporates Python 3.6.1
3
or any part thereof, and wants to make the
derivative work available to others as provided herein, then Licensee hereby
derivative work available to others as provided herein, then Licensee hereby
agrees to include in any such work a brief summary of the changes made to Python
agrees to include in any such work a brief summary of the changes made to Python
3.6.1
2
.
3.6.1
3
.
4. PSF is making Python 3.6.1
2
available to Licensee on an "AS IS" basis.
4. PSF is making Python 3.6.1
3
available to Licensee on an "AS IS" basis.
PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
USE OF PYTHON 3.6.1
2
WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
USE OF PYTHON 3.6.1
3
WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 3.6.1
2
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 3.6.1
3
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 3.6.1
2
, OR ANY DERIVATIVE
MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 3.6.1
3
, OR ANY DERIVATIVE
THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
6. This License Agreement will automatically terminate upon a material breach of
6. This License Agreement will automatically terminate upon a material breach of
...
@@ -38,5 +38,5 @@ PSF LICENSE AGREEMENT FOR PYTHON 3.6.12
...
@@ -38,5 +38,5 @@ PSF LICENSE AGREEMENT FOR PYTHON 3.6.12
trademark sense to endorse or promote products or services of Licensee, or any
trademark sense to endorse or promote products or services of Licensee, or any
third party.
third party.
8. By copying, installing or otherwise using Python 3.6.1
2
, Licensee agrees
8. By copying, installing or otherwise using Python 3.6.1
3
, Licensee agrees
to be bound by the terms and conditions of this License Agreement.
to be bound by the terms and conditions of this License Agreement.
README.md
View file @
05d60171
...
@@ -4,5 +4,5 @@ Python is developed under an OSI-approved open source license, making it freely
...
@@ -4,5 +4,5 @@ Python is developed under an OSI-approved open source license, making it freely
Connect to
[
https://www.python.org/
](
https://www.python.org/
)
for complete details about Python.
Connect to
[
https://www.python.org/
](
https://www.python.org/
)
for complete details about Python.
# More resources
# More resources
[
Python 3.6.1
2
Online Documentation
](
Python
3.6.1
2
)
[
Python 3.6.1
3
Online Documentation
](
Python
3.6.1
3
)
Report bugs at
[
https://bugs.python.org
](
https://bugs.python.org
)
.
Report bugs at
[
https://bugs.python.org
](
https://bugs.python.org
)
.
hardening_manifest.yaml
View file @
05d60171
...
@@ -31,19 +31,29 @@ labels:
...
@@ -31,19 +31,29 @@ labels:
# List of resources to make available to the offline build context
# List of resources to make available to the offline build context
resources
:
resources
:
-
filename
:
python.tar.gz
-
filename
:
python.tar.gz
url
:
https://github.com/python/cpython/archive/v3.6.13.tar.gz
url
:
https://github.com/python/cpython/archive/
refs/tags/
v3.6.13.tar.gz
validation
:
validation
:
type
:
sha256
type
:
sha256
value
:
22cb6086b79c2408e7c5c2109349f6365160263fb18209ff0d144678c7882ff4
value
:
22cb6086b79c2408e7c5c2109349f6365160263fb18209ff0d144678c7882ff4
-
filename
:
pip-21.
0.1
-py3-none-any.whl
-
filename
:
pip-21.
1.2
-py3-none-any.whl
url
:
https://files.pythonhosted.org/packages/
fe/ef/60d7ba03b5c44
23
0
9e
f42e7d69959f73aacccd0d86008362a681c4698e83
/pip-21.
0.1
-py3-none-any.whl
url
:
https://files.pythonhosted.org/packages/
cd/82/04e9aaf603fdbaecb43
23
b
9e
723f13c92c245f6ab2902195c53987848c78
/pip-21.
1.2
-py3-none-any.whl
validation
:
validation
:
type
:
sha256
type
:
sha256
value
:
37fd50e056e2aed635dec96594606f0286640489b0db0ce7607f7e51890372d5
value
:
f8ea1baa693b61c8ad1c1d8715e59ab2b93cd3c4769bacab84afcc4279e7a70e
-
filename
:
setuptools-56.1.0-py3-none-any.whl
url
:
https://files.pythonhosted.org/packages/11/1b/7012b145cb228aed20f9b2b8b259df49e7963d900799ea44791f54d06ab9/setuptools-56.1.0-py3-none-any.whl
validation
:
type
:
sha256
value
:
9ceb15de17f8e99dd4903f88e05e04285fa60f364f67bdcc4334aa71604b7a39
-
filename
:
wheel-0.36.2-py2.py3-none-any.whl
url
:
https://files.pythonhosted.org/packages/65/63/39d04c74222770ed1589c0eaba06c05891801219272420b40311cd60c880/wheel-0.36.2-py2.py3-none-any.whl
validation
:
type
:
sha256
value
:
78b5b185f0e5763c26ca1e324373aadd49182ca90e825f7853f4b2509215dc0e
# List of project maintainers
# List of project maintainers
maintainers
:
maintainers
:
-
email
:
"
melissari_sean@bah.com"
-
email
:
"
melissari_sean@bah.com"
name
:
"
Sean
Melissari"
name
:
"
Sean
Melissari"
username
:
"
smelissari"
username
:
"
smelissari"
cht_member
:
true
cht_member
:
true
renovate.json
View file @
05d60171
{
{
"assignees"
:
[
"assignees"
:
[
"@s
ean.melissari
"
"@s
hen_vickie
"
],
],
"baseBranches"
:
[
"baseBranches"
:
[
"development"
"development"
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"packageRules"
:
[
"packageRules"
:
[
{
{
"datasources"
:
[
"datasources"
:
[
"github-
release
s"
"github-
tag
s"
],
],
"packageNames"
:
[
"packageNames"
:
[
"python/cpython"
"python/cpython"
...
@@ -18,5 +18,27 @@
...
@@ -18,5 +18,27 @@
"enabled"
:
false
"enabled"
:
false
}
}
}
}
],
"regexManagers"
:
[
{
"fileMatch"
:
[
"^hardening_manifest.yaml$"
],
"matchStrings"
:
[
"org
\\
.opencontainers
\\
.image
\\
.version:
\\
s+
\"
(?<currentValue>.+?)
\"
"
],
"depNameTemplate"
:
"python/cpython"
,
"datasourceTemplate"
:
"github-tags"
},
{
"fileMatch"
:
[
"^hardening_manifest.yaml$"
],
"matchStrings"
:
[
"tags:
\\
s+-
\\
s+
\"
(?<currentValue>.+?)
\"
"
],
"depNameTemplate"
:
"python/cpython"
,
"datasourceTemplate"
:
"github-tags"
}
]
]
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment