Skip to content

Commit

Permalink
Docker: Fix asset copy step to copy from the correct directory (#33)
Browse files Browse the repository at this point in the history
Assets were moved from the `assets` folder to the `web/assets` folder in
commit 7204ae2 but the `Dockerfile` has
not been adjusted to copy from there.
  • Loading branch information
EchterAgo authored Oct 17, 2021
1 parent 2583e51 commit 158e37d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 158e37d

Please sign in to comment.