mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-06-20 17:15:39 +02:00
24 lines
No EOL
446 B
Docker
24 lines
No EOL
446 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
net-tools \
|
|
inetutils-ping \
|
|
inetutils-traceroute \
|
|
nano \
|
|
vim-nox \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt /app/
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . /app/
|
|
|
|
RUN chmod +x /app/init.sh
|
|
RUN chmod +x /app/entrypoint.sh
|
|
ARG SERVER_ADDRESS
|
|
ARG DEBUG_MODE
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|
|
|
|
CMD ["/app/init.sh"] |