Dockerfile: Always use the latest Alpine Linux and UPX versions

Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404 2022-09-08 20:34:02 +02:00
parent c3e3d46cce
commit 0636f49979
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.16.2
FROM alpine:edge
RUN apk add --no-cache gcc g++ musl-dev libc-dev cmake git samurai coreutils rpm dpkg dpkg-dev xz file
RUN mkdir -p /usr/src/yerbacon
@ -6,7 +6,7 @@ WORKDIR /usr/src/
RUN git clone --quiet -n --branch devel4 https://github.com/upx/upx/
ARG CMAKE_BUILD_TYPE="Release"
WORKDIR ./upx
RUN git checkout --quiet 73377971d48e88a99f53372f6520e1eec6ec453b
RUN git checkout --quiet HEAD
RUN git submodule --quiet update --init
RUN mkdir -p ./build/release
WORKDIR ./build/release