From 608040e0cbe19e64455ba27e98d73bbeb01d2af2 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Fri, 6 Sep 2019 00:26:27 +0900 Subject: [PATCH 1/2] change: base docker image from ubuntu:18.04 to alpine:3.10.2 --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 272836541..dc767f0f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ -FROM ubuntu:18.04 +FROM alpine:3.10.2 -RUN apt-get update && apt-get install -y --no-install-recommends \ +RUN apk add --no-cache \ + bash \ git \ openssh-client \ ca-certificates && \ From 4707485946de21d3ca6e5b867b2e584914c737c1 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Fri, 6 Sep 2019 00:30:12 +0900 Subject: [PATCH 2/2] update: .hadolint.yaml to ignore DL3018 --- .hadolint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.hadolint.yaml b/.hadolint.yaml index 8f7e23e45..0464523a4 100644 --- a/.hadolint.yaml +++ b/.hadolint.yaml @@ -1,2 +1,2 @@ ignored: - - DL3008 + - DL3018