Update Dockerfile to use golang:1.22 as builder

This commit is contained in:
Mo Tarbin 2024-09-06 19:52:55 -04:00
parent 51c546665f
commit 643663d93b

View file

@ -1,5 +1,5 @@
# Stage 1: Build the application
FROM golang:1.22-alpine AS builder
FROM golang:1.22 AS builder
WORKDIR /usr/src/app