-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
FROM debian:bullseye-slim | ||
|
||
WORKDIR /srv/kraken | ||
|
||
RUN apt-get update --fix-missing \ | ||
&& apt-get install -y libgoogle-perftools4 \ | ||
libboost-all-dev \ | ||
libprotobuf-dev \ | ||
liblog4cplus-2.0.5 \ | ||
libzmq3-dev \ | ||
libpqxx-dev \ | ||
netcat \ | ||
&& apt-get purge -y \ | ||
&& apt-get autoremove -y | ||
|
||
COPY ./docker_build/tests/mock-kraken/departure_board_test /srv/kraken/departure_board_test | ||
RUN chmod +x /srv/kraken/departure_board_test | ||
|
||
COPY ./docker_build/tests/mock-kraken/main_routing_test /srv/kraken/main_routing_test | ||
RUN chmod +x /srv/kraken/main_routing_test | ||
|
||
EXPOSE 30000 | ||
ENV KRAKEN_GENERAL_zmq_socket=tcp://*:30000 | ||
ENV KRAKEN_GENERAL_log_level=INFO |