Files
reloading-manager/backend/Dockerfile
Ron Rise 1cc6d5ece4
Some checks failed
🧪 ✨ Unit Tests Workflow / 🧪 📜 JavaScript Tests (push) Successful in 1m37s
🧪 ✨ Unit Tests Workflow / 🧪 🐹 GolangCI-Lint (push) Successful in 1m53s
🧪 ✨ Unit Tests Workflow / 🔍 🐹 Go Tests (push) Successful in 3m26s
🏗️ ✨ Build Workflow / 🖼️ 🔨 Build Frontend (push) Successful in 5m39s
🏗️ ✨ Build Workflow / 🖥️ 🔨 Build Backend (push) Successful in 6m41s
🏗️ ✨ Build Workflow / 🚀 ✨ Deploy Application (push) Failing after 1m51s
update Go version in Dockerfile to 1.25.6
2026-02-06 19:54:37 -05:00

20 lines
280 B
Docker

FROM siteworxpro/golang:1.25.6 AS build
WORKDIR /app
ARG CGO_ENABLED=0
ARG GOOS=linux
ARG GOPROXY=direct
ARG GOPRIVATE=git.siteworxpro.com
ADD . .
RUN go mod tidy
RUN go build -o app
FROM scratch
COPY --from=build /app/app .
ADD ./migrations /migrations
ENTRYPOINT ["/app"]