fix: jenkinsfile
This commit is contained in:
parent
e2be83ce24
commit
fb78742fce
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
@ -1,20 +1,22 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker {
|
||||
image 'golang:1.23-alpine'
|
||||
}
|
||||
}
|
||||
agent any
|
||||
stages {
|
||||
stage('Install deps') {
|
||||
stage('Install') {
|
||||
agent {
|
||||
docker {
|
||||
image 'golang:1.23-alpine'
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh 'go mod tidy'
|
||||
}
|
||||
}
|
||||
stage('Build binary') {
|
||||
steps {
|
||||
sh 'go build main.go'
|
||||
}
|
||||
}
|
||||
stage('Populate env') {
|
||||
sh 'rm .env || true'
|
||||
sh 'echo "PORT=8007" > .env'
|
||||
}
|
||||
stage('Profit') {
|
||||
steps {
|
||||
dir('docker') {
|
||||
|
@ -2,6 +2,7 @@ FROM alpine:3
|
||||
|
||||
COPY ../main .
|
||||
COPY ../public .
|
||||
COPY ../.env .
|
||||
|
||||
CMD ["main"]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user