wrangler-action/Dockerfile

8 lines
262 B
Docker
Raw Normal View History

2019-10-11 19:45:15 +02:00
FROM node:12
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"]