update image

use the correct base image and add iproute2
This commit is contained in:
Michael (Parker) Parker
2022-11-26 09:01:06 -05:00
parent 5fef0ac2a7
commit dca678b143

View File

@@ -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