Skip to content

Commit

Permalink
Fixes #72
Browse files Browse the repository at this point in the history
  • Loading branch information
adkumar1 committed Sep 3, 2023
1 parent 7859c06 commit ee05a61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 37 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ COPY ./src ./src
RUN mvn clean install -Dmaven.test.skip=true


FROM eclipse-temurin:17.0.6_10-jdk
FROM eclipse-temurin:17-jdk-alpine

ARG USERNAME=autosetupuser
ARG USER_UID=1000
ARG USER_GID=$USER_UID

# Create the user
RUN groupadd --gid $USER_GID $USERNAME \
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME

USER $USERNAME

Expand Down
35 changes: 0 additions & 35 deletions charts/orchestrator/templates/tests/test-connection.yamle

This file was deleted.

0 comments on commit ee05a61

Please sign in to comment.