Files
yolks/bot/parkertron/Dockerfile
Michael (Parker) Parker b4d915f6f5 update start command
2022-11-26 09:24:20 -05:00

17 lines
472 B
Docker

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 iproute2 \
&& useradd -m -d /home/container container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]