Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Run 'make docker' to build a statically linked vis executable!
FROM i386/alpine:3.23
FROM i386/alpine:3.24
RUN apk update && apk add --upgrade --no-cache \
acl-dev \
acl-static \
ca-certificates \
fortify-headers \
gcc \
lua5.4-dev \
lua5.4-lpeg \
lua5.5-dev \
lua5.5-lpeg \
lua-lpeg-dev \
make \
musl-dev \
Expand All @@ -18,8 +18,8 @@ RUN apk update && apk add --upgrade --no-cache \
xz \
xz-dev \
xz-static
RUN sed -i 's/Libs: /Libs: -L${INSTALL_CMOD} /' /usr/lib/pkgconfig/lua5.4.pc
RUN mv /usr/lib/lua/5.4/lpeg.a /usr/lib/lua/5.4/liblpeg.a
RUN sed -i 's/Libs: /Libs: -L${INSTALL_CMOD} /' /usr/lib/pkgconfig/lua5.5.pc
RUN mv /usr/lib/lua/5.5/lpeg.a /usr/lib/lua/5.5/liblpeg.a
# TODO contribute a proper libuntar package to Alpine
RUN mkdir -p /build
WORKDIR /build
Expand Down
Loading