revert move to alpine
This commit is contained in:
Michael Grote 2023-11-03 11:53:34 +01:00
parent 47bcbe481f
commit 8f5521a129

View file

@ -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/*