Skip to content

Commit

Permalink
Update Dockerfile to install required build tools
Browse files Browse the repository at this point in the history
For some reason uwsgi doens't ship with wheels
  • Loading branch information
Viicos committed Jan 18, 2024
1 parent ca897e4 commit f1ea8d7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
FROM python:3.10-slim-bullseye AS backend-build

RUN apt-get update && apt-get install -y --no-install-recommends \
pkg-config \
build-essential \
git \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*


WORKDIR /app

COPY ./requirements /app/requirements
Expand Down

0 comments on commit f1ea8d7

Please sign in to comment.