mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-10 21:17:24 +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
|
# Codecov @codecov
|
||||||
|
|
||||||
FROM ubuntu:latest
|
FROM alpine:3.10
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . /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
|
RUN chmod +x /app/entrypoint.sh
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue