mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 08:06:27 +00:00
10 lines
150 B
Docker
10 lines
150 B
Docker
FROM alpine:3.10
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN apk add --no-cache curl bash git
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ] |