mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-04-06 21:39:44 +08:00
7 lines
138 B
Docker
7 lines
138 B
Docker
FROM node:lts-alpine
|
|
|
|
RUN apk add --no-cache git python2
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["help"]
|