From b0f3f92f71555fe486a4b7d687950de8f456f5d8 Mon Sep 17 00:00:00 2001 From: Thomas Schleicher Date: Tue, 22 Oct 2024 20:34:07 +0200 Subject: [PATCH] install dependencies --- dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 1b0784d..25594a5 100644 --- a/dockerfile +++ b/dockerfile @@ -5,5 +5,9 @@ ENV OPEN_PORT=8080 COPY ${APPLICATION_BINARY} . +RUN apt-get update && \ + apt-get install -y --no-install-recommends libboost-all-dev \ + && rm -rf /var/lib/apt/lists/* + EXPOSE ${OPEN_PORT} -CMD [ "./${APPLICATION_BINARY}" ] \ No newline at end of file +CMD [ "/${APPLICATION_BINARY}" ] \ No newline at end of file