Skip to content

Commit

Permalink
Merge pull request #99 from eugene-davis/main
Browse files Browse the repository at this point in the history
Updates and Fixes
  • Loading branch information
NevenVucinic-TomTom authored Nov 24, 2022
2 parents 421e59b + 9e28a1c commit 277e92e
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 125 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.13
current_version = 1.1.15
commit = True
tag = False
message = Bump version: {current_version} → {new_version}
Expand Down
2 changes: 1 addition & 1 deletion .github/containerscan/allowedlist.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
general:
vulnerabilities:
- CVE-2022-40674
- CVE-2022-43680 # libexpat isn't available in Alpine 3.16's repositories so I believe this is a false positive
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

env:
VERSION: 1.1.13
VERSION: 1.1.15

jobs:
release:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.7-alpine3.16 as builder
FROM python:3.10.8-alpine3.16 as builder

COPY . /build

Expand All @@ -8,7 +8,7 @@ RUN python -m venv /venv && /venv/bin/pip --no-cache-dir install .

FROM python:3.10.7-alpine3.16

RUN addgroup exporter && adduser --system --no-create-home --shell /bin/false --ingroup exporter exporter
RUN addgroup --gid 1000 exporter && adduser --uid 1000 --system --no-create-home --shell /bin/false --ingroup exporter exporter
USER exporter

ENV CONFIG_FILE="/config.yaml"
Expand Down
Loading

0 comments on commit 277e92e

Please sign in to comment.