diff options
| author | Marie <github@yuugi.dev> | 2025-02-07 21:38:04 +0000 |
|---|---|---|
| committer | Marie <github@yuugi.dev> | 2025-02-07 21:38:04 +0000 |
| commit | da04ff0b9acb12611fe67dbad3c4b30ecbf63828 (patch) | |
| tree | c3b5d312bcd728b14330e52f5a8a3120f7f231b4 /Dockerfile | |
| parent | fix(docker): Alpine build failing due to missing dev packages (pkgconf and etc) (diff) | |
| download | sharkey-da04ff0b9acb12611fe67dbad3c4b30ecbf63828.tar.gz sharkey-da04ff0b9acb12611fe67dbad3c4b30ecbf63828.tar.bz2 sharkey-da04ff0b9acb12611fe67dbad3c4b30ecbf63828.zip | |
chore: replace build-base with alpine-sdk
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 5ab9cc343f..766309d62b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,12 @@ ARG NODE_VERSION=22.11.0-alpine3.20 FROM node:${NODE_VERSION} as build -RUN apk add git linux-headers build-base +RUN apk add git linux-headers alpine-sdk ENV PYTHONUNBUFFERED=1 ENV COREPACK_DEFAULT_TO_LATEST=0 RUN apk add --update python3 && ln -sf python3 /usr/bin/python -RUN apk add py3-pip py3-setuptools alpine-sdk +RUN apk add py3-pip py3-setuptools RUN corepack enable |