update images for registry and cicd modules and add ability to set registry mirrors for orchestrator

This commit is contained in:
2024-06-01 21:38:17 +03:00
parent 005f7bfbe9
commit cd368c7755
13 changed files with 275 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
## Install dependencies
FROM python:3.12 as deps
FROM harbor.kvazaric.ru/mirror/library/python:3.12 as deps
WORKDIR /application
COPY ./requirements.txt ./
@@ -9,7 +9,7 @@ RUN apt-get update -y && \
pip3 install -r requirements.txt
## Build executable
FROM golang:alpine as builder
FROM harbor.kvazaric.ru/mirror/library/golang:alpine as builder
WORKDIR /application
COPY go.mod go.sum ./