File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
ci/src/main/java/io/dagger/modules/ci Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 5252 env :
5353 IMAGE_TAG : ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/parisjug-dagger-demo/translate-api:${{ env.TAG_VERSION }}
5454 run : |
55- docker build -f src/main/docker/Dockerfile.jvm --platform linux/amd64 -t $IMAGE_TAG .
55+ docker build -f src/main/docker/Dockerfile.jvm --platform linux/amd64,linux/arm64 -t $IMAGE_TAG .
5656 docker push $IMAGE_TAG
5757
5858 - name : update kube config
Original file line number Diff line number Diff line change 1212import io .dagger .client .Directory .DockerBuildArguments ;
1313import io .dagger .client .Platform ;
1414import io .dagger .client .Secret ;
15- import io .dagger .client .engineconn .Connection ;
1615import io .dagger .module .annotation .Default ;
1716import io .dagger .module .annotation .DefaultPath ;
1817import io .dagger .module .annotation .Function ;
2625@ Object
2726public class Ci {
2827
29- static final Logger LOG = LoggerFactory .getLogger (Connection .class );
28+ static final Logger LOG = LoggerFactory .getLogger (Ci .class );
3029
3130 private static final List <String > ARCHS = List .of ("amd64" , "arm64" );
3231
You can’t perform that action at this time.
0 commit comments