Skip to content

Commit

Permalink
Update Dockerfile - added curl for basic healthcheck (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-ssd authored Jun 21, 2024
2 parents 957aacf + 1696101 commit 5975624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG BASE_IMAGE_TAG=3.8.18-slim-bookworm
FROM python:$BASE_IMAGE_TAG as builder
ENV VIRTUAL_ENV=/opt/privacyidea
WORKDIR $VIRTUAL_ENV
RUN apt-get update && apt-get install -y python3-dev gcc libpq-dev libkrb5-dev
RUN apt-get update && apt-get install -y python3-dev gcc libpq-dev libkrb5-dev curl
COPY requirements.txt requirements.txt
RUN python3 -m venv "$VIRTUAL_ENV" && . $VIRTUAL_ENV/bin/activate && pip3 install wheel && pip3 install -r requirements.txt

Expand Down

0 comments on commit 5975624

Please sign in to comment.