jmusicbot-docker/Dockerfile
2024-04-11 02:22:55 -05:00

14 lines
269 B
Docker

FROM bitnami/minideb:bullseye
RUN install_packages openjdk-11-jre-headless wget curl grep \
&& mkdir -p /config/Playlists
STOPSIGNAL SIGTERM
COPY run_bot.sh /config/run_bot.sh
RUN chmod 700 /config/run_bot.sh
WORKDIR /config
VOLUME /config
CMD ["./run_bot.sh"]