this repo has no description

docker compose file #1

closed opened by teal.fm targeting master from docker
Labels

None yet.

Participants 1
AT URI
at://did:plc:iwhuynr6mm6xxuh25o4do2tx/sh.tangled.repo.pull/3lz4sincne622
+13 -4
Interdiff #1 #2
+12 -1
Dockerfile
··· 1 1 # Use the official Rust image 2 - FROM rust:1.75-slim as builder 2 + FROM rust:1.82-slim as builder 3 3 4 + # Install build dependencies 5 + RUN apt-get update && apt-get install -y \ 6 + pkg-config \ 7 + libssl-dev \ 8 + && rm -rf /var/lib/apt/lists/* 9 + 4 10 # Set working directory 5 11 WORKDIR /app 6 12 ··· 15 21 16 22 # Runtime stage 17 23 FROM debian:bookworm-slim 24 + 25 + # Install runtime dependencies 26 + RUN apt-get update && apt-get install -y \ 27 + ca-certificates \ 28 + && rm -rf /var/lib/apt/lists/* 18 29 19 30 # Create app user 20 31 RUN useradd -r -s /bin/false appuser
-2
docker-compose.yml
··· 1 - version: "3.8" 2 - 3 1 services: 4 2 discordhose: 5 3 build: .
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "discordhose" 3 3 version = "0.1.0" 4 - edition = "2024" 4 + edition = "2021" 5 5 6 6 [dependencies] 7 7 anyhow = "1.0.99"

History

3 rounds 0 comments
sign up or login to add to the discussion
teal.fm submitted #2
3 commits
expand
docker
remove unnecessary stuff form dockerfile
actually work lol
expand 0 comments
closed without merging
2 commits
expand
docker
remove unnecessary stuff form dockerfile
expand 0 comments
teal.fm submitted #0
1 commit
expand
docker
expand 0 comments