From dca678b143f91932a9feaa2df3d3f998cebeee69 Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Sat, 26 Nov 2022 09:01:06 -0500 Subject: [PATCH] update image use the correct base image and add iproute2 --- bot/parkertron/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/parkertron/Dockerfile b/bot/parkertron/Dockerfile index 5fb62c0..19165bb 100644 --- a/bot/parkertron/Dockerfile +++ b/bot/parkertron/Dockerfile @@ -1,11 +1,11 @@ -FROM --platform=$TARGETOS/$TARGETARCH alpine:3.9 +FROM --platform=$TARGETOS/$TARGETARCH debian:bullseye LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" ENV DEBIAN_FRONTEND noninteractive RUN apt update -y \ - && apt install -y libtesseract-dev \ + && apt install -y libtesseract-dev iproute2 \ && useradd -m -d /home/container container USER container