add ca-certificates

Reformatted File
Added notes

Moved general packages to their own line

Added eng language package to image as it's the default supported lang
This commit is contained in:
Michael (Parker) Parker
2022-11-29 12:27:25 -05:00
parent d23d5cebe8
commit c564e117f5

View File

@@ -5,7 +5,11 @@ LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
RUN apt update -y \ RUN apt update -y \
&& apt install -y libtesseract-dev iproute2 ca-certificates \ # general packages
&& apt install -y iproute2 ca-certificates \
# additional packages for tesseract and eng lang support
libtesseract-dev tesseract-ocr-eng \
# add container user to run application
&& useradd -m -d /home/container container && useradd -m -d /home/container container
USER container USER container