update dockerfile image versions

This commit is contained in:
sadnub 2023-10-26 12:49:32 -04:00
parent 946de18bea
commit 12d4206d84
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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