Skip to content

Commit 915b629

Browse files
authored
🥌 Add cURL to dockerfile: good for healthchecks (bluesky#794)
* 🥌 Add cURL to dockerfile, available for healthchecks. * 🥧 Add Httpie as a useful alternative for making heathz related requests.
1 parent fca3ddd commit 915b629

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ FROM python:3.12-slim as builder
1313
# We need gcc to compile thriftpy2, a secondary dependency.
1414
RUN apt-get -y update && apt-get install -y git gcc
1515

16+
# We want cURL and httpie so healthchecks can be performed within the container
17+
RUN apt-get install -y curl httpie
18+
1619
WORKDIR /code
1720

1821
# Ensure logs and error messages do not get stuck in a buffer.

0 commit comments

Comments
 (0)