diff --git a/CHANGELOG.md b/CHANGELOG.md index b07669a..105b21f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.1.4](https://github.com/upb-code-labs/tests-microservice/compare/v0.1.3...v0.1.4) (2024-02-21) + + +### Bug Fixes + +* **sec:** Define GID and UID ([2c06370](https://github.com/upb-code-labs/tests-microservice/commit/2c06370d77484016a9f14352456170c03d9e2f4b)) + + + ## [0.1.3](https://github.com/upb-code-labs/tests-microservice/compare/v0.1.2...v0.1.3) (2024-01-23) diff --git a/Dockerfile b/Dockerfile index efc682c..a7c73ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,8 @@ RUN apk --no-cache add openjdk17 RUN apk --no-cache add maven # Add non-root user -RUN adduser -D -h /opt/codelabs codelabs +RUN addgroup -g 1000 codelabs +RUN adduser -D -h /opt/codelabs -u 1000 -G codelabs codelabs WORKDIR /opt/codelabs USER codelabs diff --git a/version.json b/version.json index 3026882..6bc32e7 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "0.1.3" + "version": "0.1.4" } \ No newline at end of file