replace debian with alpine
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is running

This commit is contained in:
Fábio André Damas 2025-06-02 17:26:15 +00:00
parent 70af6a330e
commit 24c6904423

View file

@ -1,25 +1,26 @@
FROM debian:bookworm-slim
FROM alpine:latest
ENV DEBIAN_FRONTEND=noninteractive
ENV LANG=C.UTF-8
ENV OPENTTD_JGR_VERSION=0.65.3
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
RUN apk add --no-cache \
git \
libsdl2-dev \
libsdl2-mixer-dev \
libfontconfig-dev \
libicu-dev \
build-base \
cmake \
sdl2-dev \
sdl2_mixer-dev \
fontconfig-dev \
icu-dev \
libpng-dev \
liblzma-dev \
liblzo2-dev \
libzstd-dev \
pkg-config \
xz-dev \
lzo-dev \
zstd-dev \
wget \
unzip \
&& apt-get clean
bash \
curl \
pkgconfig \
freetype-dev \
bzip2-dev
WORKDIR /openttd