Skip to content

Commit

Permalink
update dockerfile image versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sadnub committed Oct 27, 2023
1 parent 946de18 commit 12d4206
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/containers/tactical-nats/dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions docker/containers/tactical/dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
Expand Down

0 comments on commit 12d4206

Please sign in to comment.