metal-kompanion/docker/Dockerfile.server

8 lines
331 B
Docker

FROM debian:trixie
RUN apt-get update && apt-get install -y --no-install-recommends \n build-essential cmake qt6-base-dev ca-certificates && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY .. /app
RUN cmake -S . -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build -j384
EXPOSE 18080
CMD ["/app/build/kompanion_server"]