mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-03-23 12:58:53 +08:00
8 lines
175 B
Docker
8 lines
175 B
Docker
FROM node:lts-alpine
|
|
|
|
RUN apk add --no-cache git python3 build-base
|
|
RUN npm i -g --force yarn
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["help"]
|