fsdfsdfsdf / Dockerfile
wuhp's picture
Update Dockerfile
ec682ef verified
Raw
History Blame Contribute Delete
252 Bytes
FROM python:3.12-slim
RUN apt-get update && \
apt-get install -y \
redis-tools \
netcat-openbsd \
nmap \
telnet \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN chmod +x start.sh
CMD ["./start.sh"]