We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ea8f6 commit 23ef082Copy full SHA for 23ef082
Dockerfile.dev
@@ -18,13 +18,19 @@ FROM debian:12.12-slim
18
ENV DEBIAN_FRONTEND=noninteractive
19
20
RUN apt-get update && apt-get install -y --no-install-recommends \
21
- ca-certificates; \
+ ca-certificates \
22
+ iputils-ping \
23
+ netcat-openbsd \
24
+ telnet \
25
+ curl \
26
+ wget \
27
+ jq \
28
+ net-tools; \
29
apt-get clean; \
30
rm -rf /var/lib/apt/lists/*; \
31
groupadd -r bee --gid 999; \
32
useradd -r -g bee --uid 999 --no-log-init -m bee;
33
-# make sure mounted volumes have correct permissions
34
RUN mkdir -p /home/bee/.bee && chown 999:999 /home/bee/.bee
35
36
COPY --from=build /src/dist/bee /usr/local/bin/bee
0 commit comments