mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 06:55:13 +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"
|
LABEL org.opencontainers.image.authors="Vincenzo Palazzo (@vincenzopalazzo) vincenzopalazzodev@gmail.com"
|
||||||
|
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
|
|
||||||
RUN apk update && \
|
RUN apk update && \
|
||||||
apk add ca-certificates alpine-sdk autoconf automake git libtool \
|
apk add \
|
||||||
gmp-dev sqlite-dev python3 py3-mako net-tools zlib-dev libsodium gettext su-exec \
|
alpine-sdk \
|
||||||
python3 py3-pip #&& \
|
autoconf \
|
||||||
#apk add --upgrade fortify-headers
|
automake \
|
||||||
|
ca-certificates \
|
||||||
|
gettext \
|
||||||
|
git \
|
||||||
|
gmp-dev \
|
||||||
|
libsodium \
|
||||||
|
libtool \
|
||||||
|
net-tools \
|
||||||
|
py3-mako \
|
||||||
|
python3 \
|
||||||
|
sqlite-dev \
|
||||||
|
su-exec \
|
||||||
|
zlib-dev
|
||||||
|
|
||||||
|
|
||||||
RUN mkdir lightning
|
RUN mkdir lightning
|
||||||
COPY . lightning
|
COPY . lightning
|
||||||
|
|
Loading…
Add table
Reference in a new issue