mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
Clean up Dockerfile.alpine
bump Dockerfile.alpine from Alpine 3.14 to 3.16 (current stable) and remove apparently redundant dependencies.
This commit is contained in:
parent
74652f7cf4
commit
f0d81f46f0
1 changed files with 18 additions and 5 deletions
|
@ -1,13 +1,26 @@
|
|||
FROM alpine:3.14.3
|
||||
FROM alpine:3.16
|
||||
LABEL org.opencontainers.image.authors="Vincenzo Palazzo (@vincenzopalazzo) vincenzopalazzodev@gmail.com"
|
||||
|
||||
WORKDIR /build
|
||||
|
||||
RUN apk update && \
|
||||
apk add ca-certificates alpine-sdk autoconf automake git libtool \
|
||||
gmp-dev sqlite-dev python3 py3-mako net-tools zlib-dev libsodium gettext su-exec \
|
||||
python3 py3-pip #&& \
|
||||
#apk add --upgrade fortify-headers
|
||||
apk add \
|
||||
alpine-sdk \
|
||||
autoconf \
|
||||
automake \
|
||||
ca-certificates \
|
||||
gettext \
|
||||
git \
|
||||
gmp-dev \
|
||||
libsodium \
|
||||
libtool \
|
||||
net-tools \
|
||||
py3-mako \
|
||||
python3 \
|
||||
sqlite-dev \
|
||||
su-exec \
|
||||
zlib-dev
|
||||
|
||||
|
||||
RUN mkdir lightning
|
||||
COPY . lightning
|
||||
|
|
Loading…
Add table
Reference in a new issue