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