From 12d4206d84999dd35c0b1b562335e7120fdd5afe Mon Sep 17 00:00:00 2001 From: sadnub Date: Thu, 26 Oct 2023 12:49:32 -0400 Subject: [PATCH] update dockerfile image versions --- docker/containers/tactical-nats/dockerfile | 2 +- docker/containers/tactical/dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/containers/tactical-nats/dockerfile b/docker/containers/tactical-nats/dockerfile index e1709e47..0a9b00ce 100644 --- a/docker/containers/tactical-nats/dockerfile +++ b/docker/containers/tactical-nats/dockerfile @@ -1,4 +1,4 @@ -FROM nats:2.10.1-alpine +FROM nats:2.10.3-alpine ENV TACTICAL_DIR /opt/tactical ENV TACTICAL_READY_FILE ${TACTICAL_DIR}/tmp/tactical.ready diff --git a/docker/containers/tactical/dockerfile b/docker/containers/tactical/dockerfile index dd13d025..c479280d 100644 --- a/docker/containers/tactical/dockerfile +++ b/docker/containers/tactical/dockerfile @@ -1,5 +1,5 @@ # creates python virtual env -FROM python:3.11.4-slim AS CREATE_VENV_STAGE +FROM python:3.11.6-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.11.4-slim AS GET_SCRIPTS_STAGE +FROM python:3.11.6-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.11.4-slim +FROM python:3.11.6-slim # set env variables ENV VIRTUAL_ENV /opt/venv