0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 07:50:43 -05:00

⬆️ Minor deps update.

This commit is contained in:
Andrey Antukh 2021-01-30 11:29:09 +01:00 committed by Alonso Torres
parent 8253ef90d0
commit c62bc408dc
2 changed files with 9 additions and 9 deletions

View file

@ -3,7 +3,7 @@
"clojars" {:url "https://clojars.org/repo"}
"jcenter" {:url "https://jcenter.bintray.com/"}}
:deps
{org.clojure/clojure {:mvn/version "1.10.1"}
{org.clojure/clojure {:mvn/version "1.10.2"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
org.clojure/data.json {:mvn/version "1.0.0"}
org.clojure/core.async {:mvn/version "1.3.610"}
@ -26,7 +26,7 @@
org.eclipse.jetty/jetty-servlet]}
io.prometheus/simpleclient_httpserver {:mvn/version "0.9.0"}
selmer/selmer {:mvn/version "1.12.31"}
selmer/selmer {:mvn/version "1.12.33"}
expound/expound {:mvn/version "0.8.7"}
com.cognitect/transit-clj {:mvn/version "1.0.324"}
@ -35,8 +35,8 @@
info.sunng/ring-jetty9-adapter {:mvn/version "0.14.2"}
seancorfield/next.jdbc {:mvn/version "1.1.613"}
metosin/reitit-ring {:mvn/version "0.5.10"}
metosin/jsonista {:mvn/version "0.3.0"}
metosin/reitit-ring {:mvn/version "0.5.11"}
metosin/jsonista {:mvn/version "0.3.1"}
org.postgresql/postgresql {:mvn/version "42.2.18"}
com.zaxxer/HikariCP {:mvn/version "3.4.5"}
@ -65,7 +65,7 @@
puppetlabs/clj-ldap {:mvn/version"0.3.0"}
integrant/integrant {:mvn/version "0.8.0"}
software.amazon.awssdk/s3 {:mvn/version "2.15.54"}
software.amazon.awssdk/s3 {:mvn/version "2.15.73"}
;; exception printing
io.aviso/pretty {:mvn/version "0.1.37"}

View file

@ -4,7 +4,7 @@ LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
ARG DEBIAN_FRONTEND=noninteractive
ENV NODE_VERSION=v14.15.3 \
CLOJURE_VERSION=1.10.1.754 \
CLOJURE_VERSION=1.10.2.774 \
LANG=en_US.UTF-8 \
LC_ALL=en_US.UTF-8
@ -132,10 +132,10 @@ RUN set -ex; \
RUN set -ex; \
cd /tmp; \
wget https://github.com/borkdude/clj-kondo/releases/download/v2020.11.07/clj-kondo-2020.11.07-linux-amd64.zip; \
unzip clj-kondo-2020.11.07-linux-amd64.zip; \
wget https://github.com/borkdude/clj-kondo/releases/download/v2021.01.20/clj-kondo-2021.01.20-linux-amd64.zip; \
unzip clj-kondo-2021.01.20-linux-amd64.zip; \
mv clj-kondo /usr/local/bin/; \
rm clj-kondo-2020.11.07-linux-amd64.zip;
rm clj-kondo-2021.01.20-linux-amd64.zip;
EXPOSE 3447
EXPOSE 3448