Initial commit

This commit is contained in:
Daniel Mason 2023-04-13 17:14:46 +12:00
parent 1ea3eb1f90
commit 3ed1186fb8
Signed by: idanoo
GPG key ID: 387387CDBC02F132
4 changed files with 179 additions and 1 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
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"]