mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 20:47:26 +00:00
Enhancement: Use alpine instead of ubuntu
This commit is contained in:
parent
1c4a4261fa
commit
8df07eb266
1 changed files with 5 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue