Merge pull request #25 from milankragujevic/master

Fixes #24
This commit is contained in:
Cédric Verstraeten
2021-08-13 22:14:29 +02:00
committed by GitHub

View File

@@ -16,7 +16,7 @@ COPY web /go/src/github.com/kerberos-io/opensource/web
########################
# Download NPM and Yarns
RUN apt-get install curl && curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
RUN apt-get update && apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt update && apt install yarn -y