Skip to content

Commit e267a02

Browse files
committedMar 19, 2024
update docker image, add indy-vdr to deps
Signed-off-by: Abdulhamit Kumru <abdulhamit.kumru@tubitak.gov.tr> Remove references to bcgovimages/von-image - Switch base image to a plain python image for better maintainability. Signed-off-by: Wade Barnes <wade@neoterictech.ca> Fix issue with telegraf.conf - telegraf expects a trailing linefeed Signed-off-by: Wade Barnes <wade@neoterictech.ca>
1 parent 6f2c18a commit e267a02

File tree

3 files changed

+61
-3
lines changed

3 files changed

+61
-3
lines changed
 

‎fetch-validator-status/Dockerfile

+56-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,59 @@
1-
FROM bcgovimages/von-image:next-1
1+
FROM python:3.10-slim-bullseye
2+
3+
ARG uid=1001
4+
ARG user=indy
5+
ARG tag_name=indy-node-monitor
6+
ARG tag_version=
7+
8+
ENV HOME="/home/$user" \
9+
APP_ROOT="$HOME" \
10+
LC_ALL=C.UTF-8 \
11+
LANG=C.UTF-8 \
12+
PIP_NO_CACHE_DIR=off \
13+
PYTHONUNBUFFERED=1 \
14+
PYTHONIOENCODING=UTF-8 \
15+
RUST_LOG=warning \
16+
SHELL=/bin/bash \
17+
SUMMARY="Indy Node Monitor" \
18+
DESCRIPTION="A container for monitoring the nodes of an Indy Node network."
19+
20+
LABEL summary="$SUMMARY" \
21+
description="$DESCRIPTION" \
22+
io.k8s.description="$DESCRIPTION" \
23+
io.k8s.display-name="$tag_name $tag_version" \
24+
name="$tag_name" \
25+
version="$tag_version" \
26+
maintainer=""
27+
28+
# Add local binaries and aliases to path
29+
ENV PATH="$HOME/.local/bin:$PATH"
30+
31+
# Make libraries resolvable by python
32+
ENV LD_LIBRARY_PATH="$HOME/.local/lib:$LD_LIBRARY_PATH"
33+
RUN echo "$HOME/.local/lib" > /etc/ld.so.conf.d/local.conf && ldconfig
34+
35+
# Add indy user
36+
RUN useradd -U -ms /bin/bash -u $uid $user
37+
WORKDIR $HOME
38+
39+
# - In order to drop the root user, we have to make some directories writable
40+
# to the root group as OpenShift default security model is to run the container
41+
# under random UID.
42+
RUN usermod -a -G 0 indy
43+
44+
# Create standard directories to allow volume mounting and set permissions
45+
# Note: PIP_NO_CACHE_DIR environment variable should be cleared to allow caching
46+
RUN mkdir -p \
47+
$HOME/log \
48+
$(python -m site --user-site)
49+
50+
# The root group needs access the directories under $HOME for the container to function in OpenShift.
51+
# Also ensure the permissions on the python 'site-packages' folder are set correctly.
52+
RUN chown -R indy:root $HOME && \
53+
chmod -R ug+rw $HOME && \
54+
chmod +rx $(python -m site --user-site)
55+
56+
USER $user
257

358
ADD requirements.txt .
459
RUN pip3 install --upgrade pip

‎fetch-validator-status/requirements.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@ gspread
44
oauth2client
55
fastapi
66
uvicorn
7-
gunicorn
7+
gunicorn
8+
9+
base58
10+
indy-vdr

‎telegraf/telegraf.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -507,4 +507,4 @@
507507
## 1. Local -- interpret based on machine localtime
508508
## 2. "America/New_York" -- Unix TZ values like those found in https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
509509
## 3. UTC -- or blank/unspecified, will return timestamp in UTC
510-
json_timezone = ""
510+
json_timezone = ""

0 commit comments

Comments
 (0)