forked from AryanSharma9917/Codewise-CLI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (25 loc) · 679 Bytes
/
Dockerfile
File metadata and controls
36 lines (25 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Stage 1: Build the Go binary
FROM golang:1.22-alpine AS builder
# Set the working directory
WORKDIR /app
# Copy go mod and sum files
COPY go.mod go.sum ./
RUN go mod download
# Copy source code
COPY . .
# Build the CLI binary
RUN go build -o codewise main.go
# Stage 2: Minimal runtime image
FROM alpine:latest
# Create a non-root user for better security (optional)
RUN adduser -D appuser
# Set working directory
WORKDIR /home/appuser
# Copy the compiled binary from builder stage
COPY --from=builder /app/codewise .
# Set ownership (if using non-root user)
RUN chown -R appuser .
# Use non-root user
USER appuser
# Command to run the CLI
ENTRYPOINT ["./codewise"]