Skip to content

Commit

Permalink
Fix dockerfile to use musl due to glibc version
Browse files Browse the repository at this point in the history
  • Loading branch information
chipsenkbeil committed Jul 6, 2023
1 parent c1f1e0e commit ed72df4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ RUN mkdir -p $opt_lsp_dir \

# Install distant binary and make sure its in a path for everyone
ARG distant_version=0.20.0-alpha.11
RUN curl -L sh.distant.dev | sh -s -- --install-dir "$opt_bin_dir" --distant-version $distant_version --run-as-admin \
ARG distant_host=x86_64-unknown-linux-musl
RUN curl -L sh.distant.dev | sh -s -- --install-dir "$opt_bin_dir" --distant-version $distant_version --distant-host $distant_host --run-as-admin \
&& ln -s "$opt_bin_dir/distant" /usr/local/bin/distant \
&& distant --version

Expand Down

0 comments on commit ed72df4

Please sign in to comment.