15 lines
276 B
Docker
15 lines
276 B
Docker
# hadolint ignore=DL3007
|
|
FROM alpine:latest
|
|
# hadolint ignore=DL3018
|
|
RUN apk update --no-cache && \
|
|
apk add --no-cache \
|
|
build-essential \
|
|
wget \
|
|
rsync \
|
|
openssh-client \
|
|
ca-certificates \
|
|
debhelper \
|
|
git \
|
|
curl \
|
|
yamllint \
|
|
bash \
|