Skip to content

Instantly share code, notes, and snippets.

View eactisgrosso's full-sized avatar

Eze eactisgrosso

View GitHub Profile
@eactisgrosso
eactisgrosso / .groovy
Last active January 4, 2023 16:40
Jenkinsfile for building and running .NET Core images in Amazon ECS
#!/usr/bin/env groovy
pipeline {
agent { label 'master' }
stages {
stage('Checkout') {
steps {
checkout scm
}
}