From 4ceb8da92ab7e4b8027186a91c10c4b8936dd66c Mon Sep 17 00:00:00 2001 From: Axel Gembe Date: Sun, 17 Oct 2021 14:21:47 +0700 Subject: [PATCH] Docker: Fix asset copy step to copy from the correct directory Assets were moved from the `assets` folder to the `web/assets` folder in commit 7204ae2e194465ec6c6c77fffd39274c39461df4 but the `Dockerfile` has not been adjusted to copy from there. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index df6362e..2700171 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ FROM alpine:3.9 RUN apk add ca-certificates WORKDIR /app COPY --from=build_base /go/src/github.com/librespeed/speedtest-go/speedtest . -COPY --from=build_base /go/src/github.com/librespeed/speedtest-go/assets ./assets +COPY --from=build_base /go/src/github.com/librespeed/speedtest-go/web/assets ./assets COPY --from=build_base /go/src/github.com/librespeed/speedtest-go/settings.toml . EXPOSE 8989