Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelde committed Mar 27, 2024
1 parent 420a304 commit 9a78625
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ ARG INSTALL_POLYLITH="${templateOption:installPolylith}"

RUN if [ "${INSTALL_CLOJURE_CLI}" = "true" ]; then \
apt-get update
# && apt-get -y install rlwrap \
# && curl -OL "https://download.clojure.org/install/linux-install-${CLOJURE_CLI_VERSION}.sh" \
# && chmod +x linux-install-${CLOJURE_CLI_VERSION}.sh \
# && /linux-install-${CLOJURE_CLI_VERSION}.sh \
# && rm /linux-install-${CLOJURE_CLI_VERSION}.sh \
# && su vscode -c "clj --version"; fi


# RUN if [ "${INSTALL_LEININGEN}" = "true" ]; then \
# curl -OL "https://raw.githubusercontent.com/technomancy/leiningen/${LEININGEN_VERSION}/bin/lein" \
# && chmod +x lein \
# && mv lein /usr/local/sbin; fi
&& apt-get -y install rlwrap \
&& curl -OL "https://download.clojure.org/install/linux-install-${CLOJURE_CLI_VERSION}.sh" \
&& chmod +x linux-install-${CLOJURE_CLI_VERSION}.sh \
&& /linux-install-${CLOJURE_CLI_VERSION}.sh \
&& rm /linux-install-${CLOJURE_CLI_VERSION}.sh \
&& su vscode -c "clj --version"; fi


RUN if [ "${INSTALL_LEININGEN}" = "true" ]; then \
curl -OL "https://raw.githubusercontent.com/technomancy/leiningen/${LEININGEN_VERSION}/bin/lein" \
&& chmod +x lein \
&& mv lein /usr/local/sbin; fi

# # Cache Clojure and dependencies
# RUN if [ "${INSTALL_LEININGEN}" = "true" ]; then \
Expand Down

0 comments on commit 9a78625

Please sign in to comment.