2019-01-22 19:08:07 +00:00
|
|
|
# Copyright (c) 2019 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
2020-11-16 14:55:13 -05:00
|
|
|
# You may obtain a copy of the License at:
|
2019-01-22 19:08:07 +00:00
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
|
|
# implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2020-03-23 16:28:23 -05:00
|
|
|
ARG PYTHON_VERSION=3.7
|
|
|
|
FROM docker.io/library/python:${PYTHON_VERSION}-slim
|
2019-01-22 19:08:07 +00:00
|
|
|
|
2020-02-26 16:10:58 -06:00
|
|
|
RUN echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/95disable-recommends
|
|
|
|
|
2019-01-22 19:08:07 +00:00
|
|
|
RUN apt-get update \
|
2020-05-04 16:31:36 -07:00
|
|
|
&& apt-get install -y dumb-init \
|
2019-01-22 19:08:07 +00:00
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2020-01-22 15:45:22 +01:00
|
|
|
|
2020-07-17 16:17:22 -07:00
|
|
|
# Upgrade pip to fix wheel cache for locally built wheels.
|
2020-01-22 15:45:22 +01:00
|
|
|
# See https://github.com/pypa/pip/issues/6852
|
|
|
|
RUN pip install -U pip
|
|
|
|
|
2020-03-16 10:58:37 -05:00
|
|
|
# Undo debian changes to openssl.cnf that are too aggressive
|
|
|
|
COPY openssl.cnf /etc/ssl/openssl.cnf
|
|
|
|
|
2019-01-22 19:08:07 +00:00
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|