This commit is contained in:
2025-01-25 16:17:42 -03:00
parent b4d9564a65
commit 29175590ef
2 changed files with 10 additions and 1 deletions

10
.idea/workspace.xml generated
View File

@@ -244,7 +244,15 @@
<option name="project" value="LOCAL" /> <option name="project" value="LOCAL" />
<updated>1737832501697</updated> <updated>1737832501697</updated>
</task> </task>
<option name="localTasksCounter" value="7" /> <task id="LOCAL-00007" summary="Docker">
<option name="closed" value="true" />
<created>1737832559745</created>
<option name="number" value="00007" />
<option name="presentableId" value="LOCAL-00007" />
<option name="project" value="LOCAL" />
<updated>1737832559745</updated>
</task>
<option name="localTasksCounter" value="8" />
<servers /> <servers />
</component> </component>
<component name="Vcs.Log.Tabs.Properties"> <component name="Vcs.Log.Tabs.Properties">

View File

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