Skip to content

Commit

Permalink
[+] add curl to the Docker image, closes #529
Browse files Browse the repository at this point in the history
  • Loading branch information
pashagolub committed Feb 10, 2023
1 parent cb1f844 commit 352baed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# When building an image it is recommended to provide version arguments, e.g.
# docker build --no-cached -t <tagname> \
# docker build --no-cache -t cybertecpostgresql/pg_timetable:<tagname> \
# --build-arg COMMIT=`git show -s --format=%H HEAD` \
# --build-arg VERSION=`git describe --tags --abbrev=0` \
# --build-arg DATE=`git show -s --format=%cI HEAD` .
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN go build -buildvcs=false -ldflags "-X main.commit=${COMMIT} -X main.version=
FROM alpine

# Install psql client
RUN apk --no-cache add postgresql-client
RUN apk --no-cache add postgresql-client curl

# Copy the binary and certificates into the container
COPY --from=builder /build/pg_timetable /
Expand Down

0 comments on commit 352baed

Please sign in to comment.