parent
47bcbe481f
commit
8f5521a129
1 changed files with 18 additions and 15 deletions
33
Dockerfile
33
Dockerfile
|
@ -1,15 +1,18 @@
|
||||||
# hadolint ignore=DL3007
|
FROM ubuntu:focal
|
||||||
FROM alpine:latest
|
|
||||||
# hadolint ignore=DL3018
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
RUN apk update --no-cache && \
|
|
||||||
apk add --no-cache \
|
# hadolint ignore=DL3008,DL3028
|
||||||
build-essential \
|
RUN apt-get update && \
|
||||||
wget \
|
apt-get -y --no-install-recommends install \
|
||||||
rsync \
|
build-essential \
|
||||||
openssh-client \
|
wget \
|
||||||
ca-certificates \
|
rsync \
|
||||||
debhelper \
|
openssh-client \
|
||||||
git \
|
ca-certificates \
|
||||||
curl \
|
debhelper \
|
||||||
yamllint \
|
git \
|
||||||
bash \
|
curl \
|
||||||
|
yamllint \
|
||||||
|
&& apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*
|
||||||
|
|
Loading…
Reference in a new issue