1
0
mirror of https://github.com/pravets/oscript-images.git synced 2025-11-25 22:32:37 +02:00

feat: добавлена установка зависимостей при сборке yard

This commit is contained in:
Iosif Pravets
2025-07-23 08:29:52 +00:00
committed by GitHub
parent 3bd27ff874
commit 3d2ac4a6bf

View File

@@ -6,6 +6,13 @@ ARG BASE_TAG=dev
FROM ${DOCKER_REGISTRY_URL}/${DOCKER_LOGIN}/${BASE_IMAGE}:${BASE_TAG}
LABEL maintainer="Iosif Pravets <i@pravets.ru>"
RUN opm i yard
RUN apt update \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
p7zip-rar \
p7zip-full \
&& opm i yard \
&& rm -rf \
/var/lib/apt/lists/* \
/var/cache/debconf
ENTRYPOINT ["yard"]