python 3.10.8
This commit is contained in:
parent
ed7bfcfb58
commit
721c48ea88
|
@ -1,11 +1,11 @@
|
|||
# pulls community scripts from git repo
|
||||
FROM python:3.10.6-slim AS GET_SCRIPTS_STAGE
|
||||
FROM python:3.10.8-slim AS GET_SCRIPTS_STAGE
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends git && \
|
||||
git clone https://github.com/amidaware/community-scripts.git /community-scripts
|
||||
|
||||
FROM python:3.10.6-slim
|
||||
FROM python:3.10.8-slim
|
||||
|
||||
ENV TACTICAL_DIR /opt/tactical
|
||||
ENV TACTICAL_READY_FILE ${TACTICAL_DIR}/tmp/tactical.ready
|
||||
|
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
name: Tests
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.10.6"]
|
||||
python-version: ["3.10.8"]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
user: "tactical"
|
||||
python_ver: "3.10.6"
|
||||
python_ver: "3.10.8"
|
||||
go_ver: "1.18.5"
|
||||
backend_repo: "https://github.com/amidaware/tacticalrmm.git"
|
||||
frontend_repo: "https://github.com/amidaware/tacticalrmm-web.git"
|
||||
|
|
|
@ -37,7 +37,7 @@ MESH_VER = "1.0.85"
|
|||
NATS_SERVER_VER = "2.9.3"
|
||||
|
||||
# for the update script, bump when need to recreate venv
|
||||
PIP_VER = "32"
|
||||
PIP_VER = "33"
|
||||
|
||||
SETUPTOOLS_VER = "65.5.0"
|
||||
WHEEL_VER = "0.37.1"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# creates python virtual env
|
||||
FROM python:3.10.6-slim AS CREATE_VENV_STAGE
|
||||
FROM python:3.10.8-slim AS CREATE_VENV_STAGE
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
|
@ -21,14 +21,14 @@ RUN apt-get update && \
|
|||
pip install --no-cache-dir -r ${TACTICAL_TMP_DIR}/api/requirements.txt
|
||||
|
||||
# pulls community scripts from git repo
|
||||
FROM python:3.10.6-slim AS GET_SCRIPTS_STAGE
|
||||
FROM python:3.10.8-slim AS GET_SCRIPTS_STAGE
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends git && \
|
||||
git clone https://github.com/amidaware/community-scripts.git /community-scripts
|
||||
|
||||
# runtime image
|
||||
FROM python:3.10.6-slim
|
||||
FROM python:3.10.8-slim
|
||||
|
||||
# set env variables
|
||||
ENV VIRTUAL_ENV /opt/venv
|
||||
|
|
|
@ -12,7 +12,7 @@ RED='\033[0;31m'
|
|||
NC='\033[0m'
|
||||
|
||||
SCRIPTS_DIR='/opt/trmm-community-scripts'
|
||||
PYTHON_VER='3.10.6'
|
||||
PYTHON_VER='3.10.8'
|
||||
SETTINGS_FILE='/rmm/api/tacticalrmm/tacticalrmm/settings.py'
|
||||
|
||||
TMP_FILE=$(mktemp -p "" "rmminstall_XXXXXXXXXX")
|
||||
|
|
|
@ -13,7 +13,7 @@ RED='\033[0;31m'
|
|||
NC='\033[0m'
|
||||
|
||||
SCRIPTS_DIR='/opt/trmm-community-scripts'
|
||||
PYTHON_VER='3.10.6'
|
||||
PYTHON_VER='3.10.8'
|
||||
SETTINGS_FILE='/rmm/api/tacticalrmm/tacticalrmm/settings.py'
|
||||
|
||||
TMP_FILE=$(mktemp -p "" "rmmrestore_XXXXXXXXXX")
|
||||
|
|
Loading…
Reference in New Issue