fix nomad and atom

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-11-03 21:51:56 -04:00
parent 3d2b81d43e
commit 508ed66544
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 3 additions and 2 deletions

View File

@ -29,12 +29,12 @@ ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
apt-transport-https \ apt-transport-https \
ca-certificates \ ca-certificates \
curl \
gnupg \ gnupg \
wget \
--no-install-recommends --no-install-recommends
# Add the atom debian repo # Add the atom debian repo
RUN curl -sSL https://packagecloud.io/AtomEditor/atom/gpgkey | apt-key add - RUN wget -qO- https://packagecloud.io/AtomEditor/atom/gpgkey | apt-key add -
RUN sh -c 'echo "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list' RUN sh -c 'echo "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list'
# Install dependencies # Install dependencies

View File

@ -11,6 +11,7 @@ RUN apk add --no-cache \
gcc \ gcc \
git \ git \
libgcc \ libgcc \
linux-headers \
make \ make \
musl-dev \ musl-dev \
npm \ npm \