This repository has been archived on 2024-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
2023-12-12 17:45:39 +00:00
|
|
|
FROM alpine@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978 as seed
|
2023-11-09 13:41:25 +00:00
|
|
|
|
2023-12-12 17:45:39 +00:00
|
|
|
FROM seed as fetch
|
2023-11-09 13:41:25 +00:00
|
|
|
RUN set -ex; \
|
2023-11-13 06:09:30 +00:00
|
|
|
apk update; \
|
2023-12-02 18:37:45 +00:00
|
|
|
apk add gcc g++ libc-dev make linux-headers patch
|
2023-12-12 17:45:39 +00:00
|
|
|
|
|
|
|
FROM fetch as package
|