eduardogsilva.routerfleet/Dockerfile
2024-04-04 15:11:13 -03:00

25 lines
No EOL
474 B
Docker

# Usar uma imagem base do Python
FROM python:3.10
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"]