From 3fbfecc7d793892e0f1f6e3aafe36c8835c0ed44 Mon Sep 17 00:00:00 2001 From: Justin Schneck Date: Thu, 7 Nov 2024 14:57:04 -0500 Subject: [PATCH] add opkg and apt to dev container --- Containerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Containerfile b/Containerfile index c577ecf..6626d82 100644 --- a/Containerfile +++ b/Containerfile @@ -74,6 +74,9 @@ RUN apk add --no-cache \ openssh-server \ coreutils +RUN apk add opkg --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing +RUN apk add apt --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community + RUN ssh-keygen -A RUN addgroup "peridio" RUN adduser --disabled-password --ingroup "peridio" "peridio"