This commit is contained in:
2025-01-25 16:15:00 -03:00
parent 8add846bb9
commit b4d9564a65
2 changed files with 24 additions and 6 deletions

View File

@@ -2,6 +2,9 @@ FROM python:3.12.8-slim-bullseye
WORKDIR /app
COPY . /app
RUN apt-get install libpq-dev
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000