Skip to content

Commit ce4cb1e

Browse files
committed
fix docker
1 parent 0685f3b commit ce4cb1e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@ FROM python:3.12-slim-bookworm
22
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
33

44
# set environment variables
5-
ENV PYTHONDONTWRITEBYTECODE 1
6-
ENV PYTHONUNBUFFERED 1
5+
ENV PYTHONDONTWRITEBYTECODE=1
6+
ENV PYTHONUNBUFFERED=1
7+
8+
# install system dependencies
9+
RUN apt-get update \
10+
&& apt-get -y install gcc postgresql \
11+
&& apt-get clean
712

813
WORKDIR /app
914

0 commit comments

Comments
 (0)