view src/client/Dockerfile @ 11:827460e58a24

implement client server and config docker compose
author Dennis <dennisconcepcionmartin@gmail.com>
date Thu, 20 Jul 2023 09:23:43 +0100
parents Dockerfile@ae1a84916424
children
line wrap: on
line source

FROM debian:latest

WORKDIR /app

COPY CMakeLists.txt .
COPY main.c .

RUN apt-get update
RUN apt-get install cmake -y

RUN mkdir -p build
RUN cd build && cmake .. && make && chmod +x hey_client

CMD ["sleep", "infinity"]