You've already forked rarus_1c_devops
mirror of
https://github.com/agibalovsa/-1C_DevOps.git
synced 2026-05-06 20:35:26 +02:00
9064a7ddd3
- Обновлен dockerfile для 1С:Элемент.Скрипт. - Скорректирован dockerfile для vanessa-automation.
28 lines
709 B
Docker
28 lines
709 B
Docker
ARG REGISTRY= \
|
|
OS_TAG=debian:bookworm-slim
|
|
|
|
# hadolint ignore=DL3006
|
|
FROM "${REGISTRY}${OS_TAG}"
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive \
|
|
OC_SCRIPT_VERSION
|
|
|
|
LABEL maintainer="Agibalov Sergei <agibse@rarus.ru>" \
|
|
version="${OC_SCRIPT_VERSION}" \
|
|
manufacturer="1C"
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
ENV OC_SCRIPT_VERSION=${OC_SCRIPT_VERSION}
|
|
|
|
# hadolint ignore=SC1091
|
|
RUN --mount=from=common_context,target=/common_context \
|
|
--mount=from=context,target=/context \
|
|
--mount=from=context_arg,target=/context_arg \
|
|
set -eux; \
|
|
. context/pre_install; \
|
|
install_packs; \
|
|
. common_context/install; \
|
|
install_packs; \
|
|
. context/post_install; \
|
|
install_check |