-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220 from Gottox/fix/alpine-container
Fix/alpine container
- Loading branch information
Showing
2 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,34 @@ | ||
ARG BASE_IMAGE=alpine | ||
#ARG BASE_IMAGE=i386/alpine | ||
FROM ${BASE_IMAGE}:3.18 | ||
FROM ${BASE_IMAGE}:3.19 | ||
|
||
RUN apk add --no-cache gcc g++ clang16 clang16-analyzer meson musl-dev git \ | ||
RUN apk add --no-cache \ | ||
gcc \ | ||
g++ \ | ||
clang17 \ | ||
clang17-extra-tools \ | ||
clang17-analyzer \ | ||
meson \ | ||
musl-dev \ | ||
git \ | ||
compiler-rt | ||
RUN apk add --no-cache curl-dev fuse fuse3-dev fuse-dev squashfs-tools attr doxygen \ | ||
graphviz valgrind | ||
RUN apk add --no-cache \ | ||
curl-dev \ | ||
fuse3-dev \ | ||
fuse-dev \ | ||
zlib-dev \ | ||
lz4-dev \ | ||
xz-dev \ | ||
zstd-dev \ | ||
squashfs-tools \ | ||
attr \ | ||
doxygen \ | ||
graphviz \ | ||
valgrind | ||
RUN apk add --no-cache \ | ||
--repository https://dl-cdn.alpinelinux.org/alpine/edge/main \ | ||
--repository https://dl-cdn.alpinelinux.org/alpine/edge/testing \ | ||
pkgconf \ | ||
muon | ||
|
||
WORKDIR /host |