* wip * merge * working again * refactor/make it a bit cleaner * fix to only call cb for session id who initiated the event * support broadcasting events to all clients * refactor * refactor into ws extension * add go mod * rename module * fix naming * refactor * rename * merge * fix manager ws delete, add manager tests * add metric page * fixes, add k6 script * fixes, add k6 script * deploy docker image * cleanup * cleanup * cleanup
38 lines
831 B
Docker
38 lines
831 B
Docker
# Stage 1: Build the Go binary
|
|
FROM golang:1.23-alpine AS builder
|
|
|
|
RUN apk update
|
|
RUN apk add git
|
|
RUN apk add curl
|
|
|
|
# Set the working directory inside the container
|
|
WORKDIR /app
|
|
|
|
# Copy go.mod and go.sum files
|
|
COPY go.mod go.sum ./
|
|
|
|
# Download and cache the Go modules
|
|
RUN go mod download
|
|
|
|
# Copy the source code into the container
|
|
COPY . .
|
|
|
|
# Build the Go binary for Linux
|
|
RUN GOPRIVATE=github.com/maddalax GOPROXY=direct go run github.com/maddalax/htmgo/cli/htmgo@latest build
|
|
|
|
|
|
# Stage 2: Create the smallest possible image
|
|
FROM gcr.io/distroless/base-debian11
|
|
|
|
# Set the working directory inside the container
|
|
WORKDIR /app
|
|
|
|
# Copy the Go binary from the builder stage
|
|
COPY --from=builder /app/dist .
|
|
|
|
# Expose the necessary port (replace with your server port)
|
|
EXPOSE 3000
|
|
|
|
|
|
# Command to run the binary
|
|
CMD ["./ws-example"]
|