sync priority updates

This commit is contained in:
STAM 2024-06-23 22:59:12 +03:00
commit 62c1fc0f34
No known key found for this signature in database
GPG Key ID: 711526C6938897F1
36 changed files with 79 additions and 61 deletions

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -7,7 +7,7 @@ LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV PATH="${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src

View File

@ -104,7 +104,6 @@ RUN curl -s ${NINJA_RELEASE_URL} | jq -r ".assets[] | select(.name | test(\"${NI
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -1,7 +1,27 @@
FROM epicmorg/astralinux:1.7-main
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/usr/local/go
ENV CARGOPATH=/root/.cargo
ENV FLUTTERPATH=/usr/local/flutter
ENV PATH="${FLUTTERPATH}/bin:${CARGOPATH}/bin:${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src
ARG EXPORT_DIR=${BUILDS_DIR}/export
ARG NINJA_ARCH=linux
ARG NINJA_VERSION=latest
ARG NINJA_RELEASE_URL=https://api.github.com/repos/ninja-build/ninja/releases/${NINJA_VERSION}
##################################################################
# Files and folders
##################################################################
RUN mkdir -p ${SRC_DIR} ${EXPORT_DIR} ${PRE_DIR}
##################################################################
# update lists
##################################################################
@ -94,6 +114,30 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
zlib1g \
zlib1g-dev
##################################################################
# Rust compillers
##################################################################
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile complete --default-toolchain stable --verbose
RUN printf "\n--------------------------------\n$(cargo --version)\n--------------------------------\n\n"
##################################################################
# Flutter SDK
##################################################################
RUN git clone https://github.com/flutter/flutter.git -b stable /usr/local/flutter
RUN flutter precache
RUN flutter config --no-analytics
RUN dart --disable-analytics
RUN printf "\n--------------------------------\n$(flutter --version)\n--------------------------------\n\n"
##################################################################
# GO compillers
##################################################################
RUN printf "\n--------------------------------\n$(go version)\n--------------------------------\n\n"
##################################################################
# other customisations
##################################################################
##################################################################
# cleanup
##################################################################

View File

@ -6,9 +6,9 @@ ARG DEBIAN_FRONTEND=noninteractive
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV CARGOPATH=/root/.cargo
ENV FLUTTERPATH=/flutter
ENV FLUTTERPATH=/usr/local/flutter
ENV PATH="${FLUTTERPATH}/bin:${CARGOPATH}/bin:${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src
@ -23,7 +23,7 @@ ARG NINJA_RELEASE_URL=https://api.github.com/repos/ninja-build/ninja/releases/${
RUN mkdir -p ${SRC_DIR} ${EXPORT_DIR} ${PRE_DIR}
##################################################################
# sid sources list
# update lists
##################################################################
RUN apt-get update && \
apt-get dist-upgrade -y
@ -102,7 +102,6 @@ RUN aptitude remove '~njava' -y
# other customisations
##################################################################
##################################################################
# cleanup
##################################################################

View File

@ -6,9 +6,9 @@ ARG DEBIAN_FRONTEND=noninteractive
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV CARGOPATH=/root/.cargo
ENV FLUTTERPATH=/flutter
ENV FLUTTERPATH=/usr/local/flutter
ENV PATH="${FLUTTERPATH}/bin:${CARGOPATH}/bin:${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src
@ -23,7 +23,7 @@ ARG NINJA_RELEASE_URL=https://api.github.com/repos/ninja-build/ninja/releases/${
RUN mkdir -p ${SRC_DIR} ${EXPORT_DIR} ${PRE_DIR}
##################################################################
# sid sources list
# update lists
##################################################################
RUN apt-get update && \
apt-get dist-upgrade -y
@ -110,7 +110,6 @@ RUN apt-get update && \
# other customisations
##################################################################
##################################################################
# cleanup
##################################################################

View File

@ -6,9 +6,9 @@ ARG DEBIAN_FRONTEND=noninteractive
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV CARGOPATH=/root/.cargo
ENV FLUTTERPATH=/flutter
ENV FLUTTERPATH=/usr/local/flutter
ENV PATH="${FLUTTERPATH}/bin:${CARGOPATH}/bin:${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src
@ -23,7 +23,7 @@ ARG NINJA_RELEASE_URL=https://api.github.com/repos/ninja-build/ninja/releases/${
RUN mkdir -p ${SRC_DIR} ${EXPORT_DIR} ${PRE_DIR}
##################################################################
# sid sources list
# update lists
##################################################################
RUN apt-get update && \
apt-get dist-upgrade -y
@ -119,7 +119,7 @@ RUN printf "\n--------------------------------\n$(cargo --version)\n------------
##################################################################
# Flutter SDK
##################################################################
RUN git clone -c http.sslverify=false https://github.com/flutter/flutter.git -b stable /flutter
RUN git clone https://github.com/flutter/flutter.git -b stable /usr/local/flutter
RUN flutter precache
RUN flutter config --no-analytics
RUN dart --disable-analytics
@ -134,7 +134,6 @@ RUN printf "\n--------------------------------\n$(go version)\n-----------------
# other customisations
##################################################################
##################################################################
# cleanup
##################################################################

View File

@ -6,9 +6,9 @@ ARG DEBIAN_FRONTEND=noninteractive
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV CARGOPATH=/root/.cargo
ENV FLUTTERPATH=/flutter
ENV FLUTTERPATH=/usr/local/flutter
ENV PATH="${FLUTTERPATH}/bin:${CARGOPATH}/bin:${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src
@ -23,7 +23,7 @@ ARG NINJA_RELEASE_URL=https://api.github.com/repos/ninja-build/ninja/releases/${
RUN mkdir -p ${SRC_DIR} ${EXPORT_DIR} ${PRE_DIR}
##################################################################
# sid sources list
# update lists
##################################################################
RUN apt-get update && \
apt-get dist-upgrade -y
@ -119,7 +119,7 @@ RUN printf "\n--------------------------------\n$(cargo --version)\n------------
##################################################################
# Flutter SDK
##################################################################
RUN git clone -c http.sslverify=false https://github.com/flutter/flutter.git -b stable /flutter
RUN git clone https://github.com/flutter/flutter.git -b stable /usr/local/flutter
RUN flutter precache
RUN flutter config --no-analytics
RUN dart --disable-analytics
@ -144,7 +144,6 @@ RUN curl -s ${NINJA_RELEASE_URL} | jq -r ".assets[] | select(.name | test(\"${NI
# other customisations
##################################################################
##################################################################
# cleanup
##################################################################

View File

@ -6,9 +6,9 @@ ARG DEBIAN_FRONTEND=noninteractive
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV CARGOPATH=/root/.cargo
ENV FLUTTERPATH=/flutter
ENV FLUTTERPATH=/usr/local/flutter
ENV PATH="${FLUTTERPATH}/bin:${CARGOPATH}/bin:${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src
@ -23,7 +23,7 @@ ARG NINJA_RELEASE_URL=https://api.github.com/repos/ninja-build/ninja/releases/${
RUN mkdir -p ${SRC_DIR} ${EXPORT_DIR} ${PRE_DIR}
##################################################################
# sid sources list
# update lists
##################################################################
RUN apt-get update && \
apt-get dist-upgrade -y
@ -120,7 +120,7 @@ RUN printf "\n--------------------------------\n$(cargo --version)\n------------
##################################################################
# Flutter SDK
##################################################################
RUN git clone https://github.com/flutter/flutter.git -b stable /flutter
RUN git clone https://github.com/flutter/flutter.git -b stable /usr/local/flutter
RUN flutter precache
RUN flutter config --no-analytics
RUN dart --disable-analytics
@ -145,7 +145,6 @@ RUN curl -s ${NINJA_RELEASE_URL} | jq -r ".assets[] | select(.name | test(\"${NI
# other customisations
##################################################################
##################################################################
# cleanup
##################################################################

View File

@ -6,9 +6,9 @@ ARG DEBIAN_FRONTEND=noninteractive
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV CARGOPATH=/root/.cargo
ENV FLUTTERPATH=/flutter
ENV FLUTTERPATH=/usr/local/flutter
ENV PATH="${FLUTTERPATH}/bin:${CARGOPATH}/bin:${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src
@ -23,7 +23,7 @@ ARG NINJA_RELEASE_URL=https://api.github.com/repos/ninja-build/ninja/releases/${
RUN mkdir -p ${SRC_DIR} ${EXPORT_DIR} ${PRE_DIR}
##################################################################
# sid sources list
# update lists
##################################################################
RUN apt-get update && \
apt-get dist-upgrade -y
@ -124,7 +124,7 @@ RUN printf "\n--------------------------------\n$(cargo --version)\n------------
##################################################################
# Flutter SDK
##################################################################
RUN git clone https://github.com/flutter/flutter.git -b stable /flutter
RUN git clone https://github.com/flutter/flutter.git -b stable /usr/local/flutter
RUN flutter precache
RUN flutter config --no-analytics
RUN dart --disable-analytics
@ -149,7 +149,6 @@ RUN curl -s ${NINJA_RELEASE_URL} | jq -r ".assets[] | select(.name | test(\"${NI
# other customisations
##################################################################
##################################################################
# cleanup
##################################################################

View File

@ -6,9 +6,9 @@ ARG DEBIAN_FRONTEND=noninteractive
# ARGuments
##################################################################
ENV BuildDocker true
ENV GOPATH=/go
ENV GOPATH=/usr/local/go
ENV CARGOPATH=/root/.cargo
ENV FLUTTERPATH=/flutter
ENV FLUTTERPATH=/usr/local/flutter
ENV PATH="${FLUTTERPATH}/bin:${CARGOPATH}/bin:${GOPATH}/bin:${PATH}"
ARG BUILDS_DIR=/builds
ARG SRC_DIR=${BUILDS_DIR}/src
@ -123,7 +123,7 @@ RUN printf "\n--------------------------------\n$(cargo --version)\n------------
##################################################################
# Flutter SDK
##################################################################
RUN git clone https://github.com/flutter/flutter.git -b stable /flutter
RUN git clone https://github.com/flutter/flutter.git -b stable /usr/local/flutter
RUN flutter precache
RUN flutter config --no-analytics
RUN dart --disable-analytics
@ -148,7 +148,6 @@ RUN curl -s ${NINJA_RELEASE_URL} | jq -r ".assets[] | select(.name | test(\"${NI
# other customisations
##################################################################
##################################################################
# cleanup
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################

View File

@ -34,7 +34,6 @@ RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue
# other customisations
##################################################################
##################################################################
# cleaninig up
##################################################################