Skip to content

Commit

Permalink
direnv layer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat committed Dec 10, 2023
1 parent 9876c58 commit 0d7791c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,9 @@ RUN set -ex \
# Install direnv
RUN set -ex \
&& export urlDirenv="https://direnv.net/install.sh" \
&& curl --proto '=https' --tlsv1.2 -sSf -L ${urlDirenv} --output /tmp/install.sh \
&& curl --output /tmp/install.sh --proto '=https' --tlsv1.2 -Sf -L "https://direnv.net/install.sh" \
&& chmod +x /tmp/install.sh \
&& bash -c "/tmp/install.sh" \
&& sudo bash -c "/tmp/install.sh" \
&& direnv --version \
&& sudo rm -rf /tmp/* \
&& true
Expand Down

0 comments on commit 0d7791c

Please sign in to comment.