File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 6868          username : ${{ secrets.REGISTRY_USERNAME }} 
6969          password : ${{ secrets.REGISTRY_PASSWORD }} 
7070
71+       - name : Remove old manifests 
72+         run : | 
73+           docker manifest rm \ 
74+             ${{ env.REGISTRY_URL }}/${{ env.PROJECT }}/${{ env.IMAGE }}:${{ env.TAG }}-amd64 \ 
75+             || echo "No existing amd64 manifest" 
76+           docker manifest rm \ 
77+             ${{ env.REGISTRY_URL }}/${{ env.PROJECT }}/${{ env.IMAGE }}:${{ env.TAG }}-arm64 \ 
78+             || echo "No existing arm64 manifest" 
79+           docker manifest rm \ 
80+             ${{ env.REGISTRY_URL }}/${{ env.PROJECT }}/${{ env.IMAGE }}:${{ env.TAG }} \ 
81+             || echo "No existing root manifest" 
82+ 
7183name : Create multi-arch manifest 
7284        run : | 
7385          docker manifest create \ 
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ WORKDIR /app
1616#  Install only wget & xz
1717USER  root
1818RUN  microdnf install --nodocs -y \
19-       wget xz make gcc glibc-devel  \
19+       wget xz make gcc \
2020    && microdnf clean all
2121
2222#  Install musl
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments