mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-03-29 09:02:17 +08:00
7 lines
132 B
Docker
7 lines
132 B
Docker
FROM node:10.16-alpine
|
|
|
|
RUN apk add --no-cache git
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["help"]
|