diff options
| author | Michael Grote | 2023-11-08 16:20:13 +0100 |
|---|---|---|
| committer | Michael Grote | 2023-11-08 16:20:13 +0100 |
| commit | 017fef9b522e362ab4625383f3b275b3daadf240 (patch) | |
| tree | 4775b5b9b8368a323d039244ae132bb5505a2694 | |
| parent | d573f0af8422b0aa25862b61c30425af904f143a (diff) | |
move to alpine
| -rw-r--r-- | Dockerfile | 16 |
1 files changed, 6 insertions, 10 deletions
@@ -1,14 +1,10 @@ -FROM ubuntu:focal +# hadolint ignore=DL3007 +FROM alpine:latest -# deaktiviert Nachfragen beim installieren von Paketen -ENV DEBIAN_FRONTEND=noninteractive - -# hadolint ignore=DL3008,DL3028,DL4006 -RUN apt-get update && \ - apt-get -y --no-install-recommends install \ - python3-pip curl && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/* +# hadolint ignore=DL3018 +RUN apk add --no-cache \ + python3-pip \ + curl WORKDIR /app |