replace debian with alpine
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is running
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is running
This commit is contained in:
parent
70af6a330e
commit
24c6904423
1 changed files with 16 additions and 15 deletions
31
Dockerfile
31
Dockerfile
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue