diff options
| author | Marie <github@yuugi.dev> | 2025-02-07 21:33:47 +0000 |
|---|---|---|
| committer | Marie <github@yuugi.dev> | 2025-02-07 21:33:47 +0000 |
| commit | 87eac89f947c84ebff3053cca2ea08734713b21a (patch) | |
| tree | 2ef5e8f6c861398773a7c25b9d138cd706d204d5 /Dockerfile | |
| parent | merge: Enable FreeBSD to be used for deployment (!887) (diff) | |
| download | sharkey-87eac89f947c84ebff3053cca2ea08734713b21a.tar.gz sharkey-87eac89f947c84ebff3053cca2ea08734713b21a.tar.bz2 sharkey-87eac89f947c84ebff3053cca2ea08734713b21a.zip | |
fix(docker): Alpine build failing due to missing dev packages (pkgconf and etc)
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index aff4074079..5ab9cc343f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN apk add git linux-headers build-base 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 +RUN apk add py3-pip py3-setuptools alpine-sdk RUN corepack enable |