mirror of
https://github.com/codecov/codecov-action
synced 2026-05-23 15:04:33 +03:00
10 lines
142 B
Docker
10 lines
142 B
Docker
|
|
FROM alpine:3.10
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
COPY . /app
|
||
|
|
|
||
|
|
RUN apk add --no-cache curl bash git
|
||
|
|
|
||
|
|
RUN chmod +x /entrypoint.sh
|
||
|
|
|
||
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|