Faas semi worfking

This commit is contained in:
2025-08-30 23:52:37 -04:00
parent 2778cbc512
commit 67bce24899
23 changed files with 1089 additions and 135 deletions

View File

@ -1,5 +1,5 @@
# Build stage
FROM golang:1.23-alpine AS builder
FROM docker.io/golang:1.23-alpine AS builder
WORKDIR /app
@ -19,7 +19,7 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o faas-server ./cmd/server
# Final stage
FROM alpine:latest
FROM docker.io/alpine:latest
RUN apk --no-cache add ca-certificates
@ -35,4 +35,4 @@ COPY --from=builder /app/migrations ./migrations
EXPOSE 8082 9091
# Run the application
CMD ["./faas-server"]
CMD ["./faas-server"]