mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-03-10 04:42:17 +08:00
7 lines
154 B
Docker
7 lines
154 B
Docker
FROM node:lts-alpine
|
|
|
|
RUN apk add --no-cache git python2 build-base yarn
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["help"]
|