netcut / Dockerfile
wuhenba's picture
Update Dockerfile
44a4ff8 verified
raw
history blame contribute delete
281 Bytes
FROM debian:trixie-slim
RUN useradd -m -u 1000 user
USER user
ENV NETCUT_PORT="7860"
ENV NETCUT_ADDR="0.0.0.0"
ENV NETCUT_PATH="./uploads"
ENV NETCUT_MAX_SIZE="50"
WORKDIR /app
COPY --chown=user ./netcut-amd64 netcut
RUN chmod +x netcut && mkdir -p /app/uploads
CMD ["./netcut"]