Release v2.1.0 (#14)

* change: base docker image from ubuntu:18.04 to alpine:3.10.2
* update: .hadolint.yaml to ignore DL3018
This commit is contained in:
Shohei Ueda
2019-09-06 00:31:34 +09:00
committed by GitHub
parent 713b37219b
commit 45f5817ce0
2 changed files with 4 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
ignored:
- DL3008
- DL3018

View File

@@ -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 && \