mirror of
https://github.com/idanoo/rtl-pager-discord
synced 2025-07-01 13:52:24 +00:00
13 lines
No EOL
231 B
Docker
13 lines
No EOL
231 B
Docker
FROM ubuntu:22.04
|
|
|
|
# Update softwares
|
|
RUN apt update && apt -y upgrade
|
|
|
|
# Install softwares
|
|
RUN apt install -y redis rtl-sdr multimon-ng
|
|
|
|
# Copy and set file
|
|
COPY pager.sh /pager.sh
|
|
RUN chmod +x /pager.sh
|
|
|
|
RUN ["bash", "/pager.sh"] |