Files
actions-yarn/Dockerfile
T
Oleksandr Bordun 4965e1a0f0 Forcing yarn update
2020-06-05 09:41:55 +02:00

8 lines
175 B
Docker

FROM node:lts-alpine
RUN apk add --no-cache git python2 build-base
RUN npm i -g --force yarn
COPY "entrypoint.sh" "/entrypoint.sh"
ENTRYPOINT ["/entrypoint.sh"]
CMD ["help"]