Enhancement: Use alpine instead of ubuntu

This commit is contained in:
Andreas Möller 2019-09-11 22:50:12 +02:00
parent 1c4a4261fa
commit 8df07eb266
No known key found for this signature in database
GPG key ID: 9FB20A0BAF60E11F

View file

@ -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