diff --git a/docs/src/content/docs/guides/hosting.md b/docs/src/content/docs/guides/hosting.md index 099cc2b..6959c0f 100644 --- a/docs/src/content/docs/guides/hosting.md +++ b/docs/src/content/docs/guides/hosting.md @@ -35,18 +35,18 @@ From there you need to paste the following lines into the Dockerfile, which will ```dockerfile FROM alpine:latest -ARG GO_FAST_VERSION=0.1.0 +ARG GO_FAST_VERSION=0.1.6 RUN apk add --no-cache unzip openssh # download and unzip go-fast-cdn -ADD https://github.com/kevinanielsen/go-fast-cdn/releases/download/${GO_FAST_VERSION}/go-fast-cdn-x86_64-linux.zip /tmp/cdn.zip +ADD https://github.com/kevinanielsen/go-fast-cdn/releases/download/${GO_FAST_VERSION}/go-fast-cdn_${GO_FAST_VERSION}_linux_amd64.zip /tmp/cdn.zip RUN unzip /tmp/cdn.zip -d /cdn/ EXPOSE 8080 # start go-fast-cdn -CMD ["/cdn/go-fast-cdn-linux"] +CMD ['/cdn/go-fast-cdn'] ```