jmusicbot-docker/Dockerfile
2024-04-11 01:42:08 -05:00

14 lines
268 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 +x /config/run_bot.sh
WORKDIR /config
VOLUME /config
CMD ["./run_bot.sh"]