Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ RUN set -eux; \
apk add --no-cache bash shadow su-exec tini; \
\
# Network / TLS
apk add --no-cache git curl wget ca-certificates openssl; \
apk add --no-cache git curl wget ca-certificates openssl make; \
\
# Misc runtime libs
apk add --no-cache gettext tzdata pcre2 zlib p7zip; \
Expand Down Expand Up @@ -504,7 +504,18 @@ RUN set -eux; \
echo "Setting up development environment..."; \
\
# 1. Install runtime dev tools (kept after build)
apk add --no-cache procps htop; \
apk add --no-cache \
procps \
htop \
bash-completion \
vim \
less \
jq \
yq \
strace \
lsof \
iproute2 \
netcat-openbsd; \
\
# 2. Install ALL build-time dependencies as a single virtual package
apk add --no-cache --virtual .dev-build-deps \
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0
1.5.1