You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by tu...@apache.org on 2020/12/13 02:08:36 UTC

[kibble] branch main updated: Use python:3.8-slim image for Dockerfile (#107)

This is an automated email from the ASF dual-hosted git repository.

turbaszek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/kibble.git


The following commit(s) were added to refs/heads/main by this push:
     new f03b7ed  Use python:3.8-slim image for Dockerfile (#107)
f03b7ed is described below

commit f03b7edb55252c5223b24b848c1e8f80acf843ff
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sun Dec 13 02:08:30 2020 +0000

    Use python:3.8-slim image for Dockerfile (#107)
    
    `python:3.8` -- 331.8 MB
    `python:3.8-slim` -- 41.67 MB
    
    https://hub.docker.com/_/python?tab=tags&page=1&ordering=last_updated&name=3.8
---
 Dockerfile.dev | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile.dev b/Dockerfile.dev
index 690be03..db8243f 100644
--- a/Dockerfile.dev
+++ b/Dockerfile.dev
@@ -15,11 +15,11 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM python:3.8
+FROM python:3.8-slim
 
 USER root
 RUN apt-get update
-RUN apt-get install -y gcc unzip
+RUN apt-get install -y gcc git unzip
 
 COPY . /kibble/