diff --git a/Dockerfile b/Dockerfile index 474fd8c..ac3e071 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ FROM node:10.14.1-alpine -COPY entrypoint.sh /entrypoint.sh +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 +COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]