Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updates from testing locally
  • Loading branch information
Kristian Freeman committed Oct 11, 2019
1 parent b52c946 commit 32bb646
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 0 additions & 2 deletions Dockerfile
@@ -1,7 +1,5 @@
FROM node:12
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"]
11 changes: 10 additions & 1 deletion entrypoint.sh
Expand Up @@ -2,6 +2,14 @@

set -e

export HOME="/github/workspace"
export NVM_DIR="/github/workspace/nvm"
export WRANGLER_HOME="/github/workspace"

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion

if [ -n "$CLOUDFLARE_API_KEY" ]; then
echo "CLOUDFLARE_API_KEY env var needs to be set. Add this field in the 'Secrets' section of your repo's settings."
exit 1
Expand All @@ -12,7 +20,8 @@ if [ -n "$CLOUDFLARE_EMAIL" ]; then
exit 1
fi

npm i
npm i @cloudflare/wrangler -g
npm i

wrangler whoami
wrangler publish

0 comments on commit 32bb646

Please sign in to comment.