mirror of
https://github.com/codecov/codecov-action
synced 2026-05-21 20:17:16 +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" ] |