refactor: update Dockerfile to include additional packages and repository sources
This commit is contained in:
parent
3a12e16646
commit
3ee17c9687
1 changed files with 14 additions and 2 deletions
|
|
@ -1,7 +1,14 @@
|
||||||
FROM alpine:edge
|
FROM alpine:edge
|
||||||
|
|
||||||
|
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
|
||||||
|
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \
|
||||||
|
echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
|
||||||
|
|
||||||
RUN apk upgrade --no-cache
|
RUN apk upgrade --no-cache
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
|
alpine-base \
|
||||||
|
apk-cron \
|
||||||
bash \
|
bash \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
curl \
|
curl \
|
||||||
|
|
@ -10,9 +17,14 @@ RUN apk add --no-cache \
|
||||||
iptables \
|
iptables \
|
||||||
iproute2 \
|
iproute2 \
|
||||||
openrc \
|
openrc \
|
||||||
openssh-client \
|
openssh \
|
||||||
openssh-server \
|
openssl \
|
||||||
sudo \
|
sudo \
|
||||||
|
git \
|
||||||
|
nano \
|
||||||
|
croc \
|
||||||
|
btop \
|
||||||
|
|
||||||
tailscale \
|
tailscale \
|
||||||
tailscale-openrc
|
tailscale-openrc
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue