This commit is contained in:
parent
9671ef2508
commit
25b61c6b29
|
@ -1,3 +1,7 @@
|
|||
#### [0.4.10] - 2025-02-10
|
||||
- `add_author_stat_columns` fixed
|
||||
|
||||
|
||||
#### [0.4.9] - 2025-02-09
|
||||
- `Shout.draft` field added
|
||||
- `Draft` entity added
|
||||
|
|
16
Dockerfile
Normal file
16
Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
FROM python:slim
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
postgresql-client \
|
||||
curl \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["python", "server.py"]
|
Loading…
Reference in New Issue
Block a user