mirror of
https://github.com/valitydev/jdk-base-image.git
synced 2024-11-06 01:15:21 +00:00
9 lines
412 B
Docker
9 lines
412 B
Docker
FROM %%IMAGE_NAME%%
|
|
RUN apt update && \
|
|
apt -y --no-install-recommends --no-install-suggests install libjemalloc2 curl && \
|
|
apt clean && rm -rf /var/lib/apt/lists/*
|
|
ENV LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2
|
|
LABEL com.rbkmoney.%%SERVICE_NAME%%.parent=%%IMAGE_NAME%% \
|
|
com.rbkmoney.%%SERVICE_NAME%%.branch=%%BRANCH%% \
|
|
com.rbkmoney.%%SERVICE_NAME%%.commit_hash=%%COMMIT_HASH%% \
|