1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
FROM node:12.6-buster-slim
MAINTAINER Rob Caelers <rob.caelers@gmail.com>
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update -y && \
apt-get dist-upgrade -y && \
apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - && \
apt-key fingerprint 0EBFCD88 && \
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" && \
apt-get update -y && \
apt-get install -y docker-ce-cli
|