this repo has no description

remove unnecessary stuff form dockerfile

-8
-8
Dockerfile
··· 16 16 # Runtime stage 17 17 FROM debian:bookworm-slim 18 18 19 - # Install runtime dependencies 20 - RUN apt-get update && apt-get install -y \ 21 - ca-certificates \ 22 - && rm -rf /var/lib/apt/lists/* 23 - 24 19 # Create app user 25 20 RUN useradd -r -s /bin/false appuser 26 21 ··· 35 30 36 31 # Switch to app user 37 32 USER appuser 38 - 39 - # Expose port (if needed in the future) 40 - EXPOSE 8080 41 33 42 34 # Run the application 43 35 CMD ["./discordhose"]