Skip to content

Commit

Permalink
adding dockerfile change
Browse files Browse the repository at this point in the history
  • Loading branch information
allnash committed Nov 7, 2024
1 parent 7ffc9e6 commit a5974da
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o fast_server .
# Start a new stage from scratch
FROM alpine:latest

# Install ca-certificates
RUN apk --no-cache add ca-certificates
# Install necessary packages
RUN apk --no-cache add \
ca-certificates \
curl \
wget \
netcat-openbsd

WORKDIR /app

Expand Down

0 comments on commit a5974da

Please sign in to comment.