Files
yolks/bot/parkertron/Dockerfile
Softwarenoob 4650340592 feat: add bot specific docker images
Migrates over docker images that are required to run specific bots
2021-08-06 22:17:06 +03:00

14 lines
429 B
Docker

FROM alpine:3.9
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
RUN apk add --update --no-cache git curl lua-stdlib lua musl-dev g++ libc-dev tesseract-ocr tesseract-ocr-dev \
&& adduser -D -h /home/container container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/ash", "/entrypoint.sh"]