Skip to content

Commit f3fe50b

Browse files
authored
Merge pull request #9 from kariricode/develop
Develop
2 parents 2e1a548 + 544675a commit f3fe50b

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

Dockerfile

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ RUN set -eux; \
117117
apk add --no-cache bash shadow su-exec tini; \
118118
\
119119
# Network / TLS
120-
apk add --no-cache git curl wget ca-certificates openssl; \
120+
apk add --no-cache git curl wget ca-certificates openssl make; \
121121
\
122122
# Misc runtime libs
123123
apk add --no-cache gettext tzdata pcre2 zlib p7zip; \
@@ -504,7 +504,18 @@ RUN set -eux; \
504504
echo "Setting up development environment..."; \
505505
\
506506
# 1. Install runtime dev tools (kept after build)
507-
apk add --no-cache procps htop; \
507+
apk add --no-cache \
508+
procps \
509+
htop \
510+
bash-completion \
511+
vim \
512+
less \
513+
jq \
514+
yq \
515+
strace \
516+
lsof \
517+
iproute2 \
518+
netcat-openbsd; \
508519
\
509520
# 2. Install ALL build-time dependencies as a single virtual package
510521
apk add --no-cache --virtual .dev-build-deps \

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0
1+
1.5.1

0 commit comments

Comments
 (0)