From 8df07eb26694ca4074ac5e701b2ce7e624f433a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 11 Sep 2019 22:50:12 +0200 Subject: [PATCH] Enhancement: Use alpine instead of ubuntu --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5364411..d765486 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,14 @@ # Codecov @codecov -FROM ubuntu:latest +FROM alpine:3.10 WORKDIR /app COPY . /app -RUN apt update && apt install -y curl git mercurial +RUN apk add --no-cache \ + curl \ + git \ + mercurial RUN chmod +x /app/entrypoint.sh