diff --git a/Dockerfile b/Dockerfile index c097c13..530766f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,8 @@ # Base-Image FROM alpine:latest -# Pakete installieren (build-base entspricht build-essential/gcc) -RUN apk update && apk add --no-cache \ - build-base \ - curl \ - vim \ - net-tools \ - bash +# Pakete installieren +RUN apt-get install -y build-essential gcc curl vim net-tools # Arbeitsverzeichnis setzen WORKDIR /app