Skip to content

Commit

Permalink
Update Dockerfiles in reference data to match new Dockerfile.template
Browse files Browse the repository at this point in the history
  • Loading branch information
maouw committed Mar 9, 2024
1 parent 59ff743 commit 91bf67e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cloudknot/data/docker_reqs_ref_data/py3/ref1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ RUN groupadd -f staff \
# Copy the python script
COPY --chown="cloudknot-user" "unit-testing-func.py" "/home/cloudknot-user/"

# Make the python script executable
RUN chmod +x "/home/cloudknot-user/unit-testing-func.py"

# Set user
USER "cloudknot-user"

Expand Down
3 changes: 3 additions & 0 deletions cloudknot/data/docker_reqs_ref_data/py3/ref2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ RUN groupadd -f staff \
# Copy the python script
COPY --chown="unit-test-username" "test-func-input.py" "/home/unit-test-username/"

# Make the python script executable
RUN chmod +x "/home/unit-test-username/test-func-input.py"

# Set user
USER "unit-test-username"

Expand Down

0 comments on commit 91bf67e

Please sign in to comment.