@@ -0,0 +1,23 @@
|
||||
FROM fedora:43 AS basic
|
||||
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
|
||||
COPY ci/dnf.conf /etc/dnf/dnf.conf
|
||||
COPY \
|
||||
ci/pre.sh \
|
||||
ci/pip.sh \
|
||||
ci/docker.sh \
|
||||
ci/minio.sh \
|
||||
ci/requirements.txt /root/
|
||||
|
||||
RUN /root/pre.sh
|
||||
RUN /root/docker.sh
|
||||
RUN /root/pip.sh
|
||||
RUN /root/minio.sh
|
||||
|
||||
# Python packages
|
||||
RUN pip3 install -r /root/requirements.txt
|
||||
|
||||
FROM basic
|
||||
|
||||
WORKDIR /app
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
[main]
|
||||
gpgcheck=1
|
||||
installonly_limit=3
|
||||
clean_requirements_on_remove=True
|
||||
best=False
|
||||
skip_if_unavailable=True
|
||||
#zchunk=False
|
||||
fastestmirror=True
|
||||
#max_parallel_downloads=10
|
||||
#ip_resolve=4
|
||||
#minrate=300k
|
||||
#timeout=20
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
# Docker
|
||||
dnf -y install dnf-plugins-core
|
||||
dnf5 config-manager \
|
||||
addrepo \
|
||||
--from-repofile \
|
||||
https://download.docker.com/linux/fedora/docker-ce.repo
|
||||
dnf -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
||||
|
||||
dnf -y clean all
|
||||
Executable
+7
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
# Minio
|
||||
wget -O /usr/local/bin/minio-client https://dl.min.io/client/mc/release/linux-amd64/mc
|
||||
chmod +x /usr/local/bin/minio-client
|
||||
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
curl --output /root/get-pip.py https://bootstrap.pypa.io/get-pip.py
|
||||
python3 /root/get-pip.py
|
||||
rm /root/get-pip.py
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
dnf -y update
|
||||
|
||||
dnf -y install nano rsync wget curl git git-all mc tree openssl \
|
||||
unzip zip \
|
||||
mtr traceroute net-tools tcpdump bind-utils \
|
||||
tcsh sysstat atop chrony ntpstat nginx \
|
||||
postgresql
|
||||
|
||||
dnf -y group install standard core \
|
||||
hardware-support development-libs development-tools
|
||||
dnf -y install postgresql-server-devel
|
||||
|
||||
dnf -y clean all
|
||||
@@ -0,0 +1,25 @@
|
||||
ansible
|
||||
pyinfra
|
||||
fabric
|
||||
build
|
||||
flask
|
||||
gunicorn
|
||||
aiohttp
|
||||
|
||||
lxml
|
||||
lxml_html_clean
|
||||
markdown
|
||||
|
||||
buildbot
|
||||
buildbot-www
|
||||
buildbot-worker
|
||||
buildbot-waterfall-view
|
||||
buildbot-console-view
|
||||
buildbot-grid-view
|
||||
service_identity
|
||||
|
||||
sqlalchemy
|
||||
sqlalchemy_utils
|
||||
alembic
|
||||
|
||||
jsonrpc@git+https://codex.r10x.net/RemiZOffAlex/jsonrpc
|
||||
Reference in New Issue
Block a user