From 5751a3042a7056cd492ff34956e981a571387cd3 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:39:22 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9b9fe94..2ac1bc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,8 @@ FROM alpine:3.13.4 LABEL maintainer="Tonye Jack " -RUN apk update && apk add --virtual .build-deps build-base gcc \ - && apk add bash python3 py3-pip \ - && pip3 install --no-cache --upgrade pip setuptools - -RUN apk del .build-deps +RUN apk update && apk add bash gcc python3 py3-pip \ + && pip3 install --no-cache --upgrade pip setuptools wheel COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh