fix: return to alpine
This commit is contained in:
parent
6530aaddd4
commit
59fe789726
@ -1,7 +1,5 @@
|
||||
# Start with an Alpine base image
|
||||
FROM debian:latest
|
||||
|
||||
RUN apt-get install -y ca-certificates
|
||||
FROM alpine:3.20
|
||||
|
||||
# Create a directory for our application
|
||||
WORKDIR /app
|
||||
|
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -1,10 +1,13 @@
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Build templ files') {
|
||||
sh 'docker run -v `pwd`:/app -w=/app ghcr.io/a-h/templ:latest generate'
|
||||
}
|
||||
stage('Build go binary') {
|
||||
agent {
|
||||
docker {
|
||||
image 'golang:latest'
|
||||
image 'golang:1.22-alpine3.20'
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user