tangled
alpha
login
or
join now
teal.fm
/
discordhose
3
fork
atom
this repo has no description
3
fork
atom
overview
issues
pulls
pipelines
remove unnecessary stuff form dockerfile
mmatt.net
6 months ago
b681c8c9
aa825c9f
-8
1 changed file
expand all
collapse all
unified
split
Dockerfile
-8
Dockerfile
···
16
16
# Runtime stage
17
17
FROM debian:bookworm-slim
18
18
19
19
-
# Install runtime dependencies
20
20
-
RUN apt-get update && apt-get install -y \
21
21
-
ca-certificates \
22
22
-
&& rm -rf /var/lib/apt/lists/*
23
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
38
-
39
39
-
# Expose port (if needed in the future)
40
40
-
EXPOSE 8080
41
33
42
34
# Run the application
43
35
CMD ["./discordhose"]