install dependencies
This commit is contained in:
parent
0bf7a93307
commit
b0f3f92f71
1 changed files with 5 additions and 1 deletions
|
|
@ -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}" ]
|
||||||
Reference in a new issue