Skip to content

Commit

Permalink
OPSEXP-2839: fix make clean and remove hard coded arg in java Dockerf…
Browse files Browse the repository at this point in the history
…ile (#49)
  • Loading branch information
alxgomz authored Sep 24, 2024
1 parent f91b8c3 commit 8e7d1fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ endif

clean:
@echo "Cleaning up Artifacts"
@find . \( -name "*.jar" -o -name "*.zip" -o -name "*.gz" -o -name "*.tgz" -o -name "*.rpm" -o -name "*.deb" \) -type f -delete
@find . \( -name "*.jar" -o -name "*.zip" -o -name "*.gz" -o -name "*.tgz" -o -name "*.rpm" -o -name "*.deb" -o -name "*.amp" \) -type f -delete

prepare_repo: scripts/fetch-artifacts.sh setenv
@echo "Fetching all artifacts for repository target"
Expand Down
2 changes: 1 addition & 1 deletion java/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Alfresco Base Java Image
ARG DISTRIB_NAME
ARG DISTRIB_MAJOR
ARG IMAGE_BASE_LOCATION=docker.io/rockylinux:9
ARG IMAGE_BASE_LOCATION

FROM ${IMAGE_BASE_LOCATION} AS rhlike

Expand Down

0 comments on commit 8e7d1fa

Please sign in to comment.