reticulum-containers/rnsd/Containerfile

20 lines
346 B
Docker

FROM debian:stable-slim
# INSTALL PYTHON
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
python3-venv \
python3-pip && \
apt-get clean
# SET UP VENV AND INSTALL RNSD
WORKDIR /app
COPY setup.sh ./
RUN ./setup.sh
# LOAD RUN SCRIPT
COPY run.sh ./
ENTRYPOINT ["bash","/app/run.sh"]