wrangler-action/Dockerfile

8 lines
274 B
Docker
Raw Normal View History

2019-10-11 19:22:20 +02:00
FROM node:10.14.1-alpine
2019-10-11 19:42:00 +02:00
ENV XDG_CONFIG_HOME /github/workspace
RUN "curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash"
RUN "nvm install latest"
ENV WRANGLER_HOME /github/workspace
2019-10-11 19:42:00 +02:00
COPY entrypoint.sh /entrypoint.sh
2019-10-07 21:41:21 +02:00
ENTRYPOINT ["/entrypoint.sh"]