Dockerfile aktualisiert
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Martin Spitzer 2026-05-14 14:10:43 +00:00
parent 1a0fcbbd12
commit 735f4a1623

View File

@ -1,9 +1,8 @@
# Base-Image # Base-Image
FROM ubuntu:latest FROM alpine:3.23 AS builder
# Pakete installieren # Pakete installieren
RUN apt-get update RUN apk upgrade --no-cache && apk add --no-cache gcc musl-dev
RUN apt-get install -y build-essential gcc curl vim net-tools
# Arbeitsverzeichnis setzen # Arbeitsverzeichnis setzen
WORKDIR /app WORKDIR /app