Skip to content

Commit 68c1a79

Browse files
committed
Merge branch 'hotfix/5.0.1'
2 parents 38a04b1 + e37008e commit 68c1a79

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11.4-slim-bullseye
1+
FROM python:3.11.4-alpine
22

33
RUN apk add --no-cache \
44
curl \
@@ -11,8 +11,7 @@ RUN apk add --no-cache \
1111
# For psycopg \
1212
postgresql-dev \
1313
# For mysql deps \
14-
default-libmysqlclient-dev \
15-
pkg-config \
14+
mariadb-dev \
1615
# For UI \
1716
ncurses \
1817
bash
@@ -26,7 +25,7 @@ WORKDIR /src
2625

2726
ENV PATH ${PATH}:/home/fastapi_template/.local/bin
2827

29-
RUN pip install poetry==1.4.2
28+
RUN pip install poetry==1.5.1
3029

3130
COPY . /src/
3231
RUN pip install .

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fastapi_template"
3-
version = "5.0.0"
3+
version = "5.0.1"
44
description = "Feature-rich robust FastAPI template"
55
authors = ["Pavel Kirilin <win10@list.ru>"]
66
packages = [{ include = "fastapi_template" }]

0 commit comments

Comments
 (0)