Fixed Dockerfile
Some checks failed
Publish Server Image / build-and-push-image (push) Failing after 34s

This commit is contained in:
Ultradesu
2026-03-11 00:25:21 +00:00
parent b0fc1fa92c
commit 3a31173046

View File

@@ -1,11 +1,12 @@
# Stage 1: Build the rust binary
FROM rust:1.80-slim-bookworm AS builder
FROM rust:1.80-bookworm AS builder
# Install system dependencies
# Install supplementary dependencies that might be needed
RUN apt-get update && apt-get install -y \
pkg-config \
libssl-dev \
protobuf-compiler \
cmake \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app