gRPC 서버 Docker 이미지 빌드 FROM rust:latest as builder WORKDIR /app COPY . . RUN apt update && apt install -y protobuf-compiler RUN cargo build --release --bin server FROM debian:stable-slim RUN apt update \ && apt install -y libssl-dev ca-certificates \ && apt clean \ && rm -rf /var/lib/apt/lists/* COPY --from=builder /app/target/release/server /app/server CMD ["/app/server"] multistage build를 통해 1G..
2023.04.02 - [조미료 보관함] - [Trouble Shooting] net::ERR_NAME_NOT_RESOLVED [Trouble Shooting] net::ERR_NAME_NOT_RESOLVED # 문제 발생 원인 분석 # docker-compose.yaml version: '3.9' services: proxy-server: container_name: proxy-server build: context: ./build/proxy dockerfile: proxy.Dockerfile command: ./app/proxy -p 80 -e grpc-server:80 restart: always deploy: mode: re piatoss3612.tistory.com 바로 이전 글에서 브라우저가 ..