install dependencies

This commit is contained in:
Thomas Schleicher 2024-10-22 20:34:07 +02:00
parent 0bf7a93307
commit b0f3f92f71

View file

@ -5,5 +5,9 @@ ENV OPEN_PORT=8080
COPY ${APPLICATION_BINARY} . 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} EXPOSE ${OPEN_PORT}
CMD [ "./${APPLICATION_BINARY}" ] CMD [ "/${APPLICATION_BINARY}" ]