Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsandeep committed Jan 15, 2024
2 parents 6a22116 + f7651b1 commit b684fde
Show file tree
Hide file tree
Showing 12 changed files with 248 additions and 493 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base
FROM golang:1.20.6-alpine AS builder
FROM golang:1.21.4-alpine AS builder

RUN apk add --no-cache git build-base gcc musl-dev
WORKDIR /app
Expand All @@ -8,8 +8,8 @@ RUN go mod download
RUN go build ./cmd/httpx

FROM alpine:3.18.2
RUN apk -U upgrade --no-cache \
RUN apk upgrade --no-cache \
&& apk add --no-cache bind-tools ca-certificates chromium
COPY --from=builder /app/httpx /usr/local/bin/

ENTRYPOINT ["httpx"]
ENTRYPOINT ["httpx"]
Loading

0 comments on commit b684fde

Please sign in to comment.