We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f085961 commit c5c28b0Copy full SHA for c5c28b0
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.9.7-alpine3.13
+FROM python:3.9.17-alpine
2
3
RUN apk add --no-cache \
4
curl \
@@ -11,7 +11,10 @@ RUN apk add --no-cache \
11
# For psycopg \
12
postgresql-dev \
13
# For mysql deps \
14
- mariadb-connector-c-dev
+ mariadb-connector-c-dev \
15
+ # For UI \
16
+ ncurses \
17
+ bash
18
19
RUN adduser --disabled-password fastapi_template
20
RUN mkdir /projects /src
@@ -32,6 +35,9 @@ RUN rm -rfv /src
32
35
RUN apk del curl
33
36
USER fastapi_template
34
37
38
+RUN git config --global user.name "Fastapi Template"
39
+RUN git config --global user.email "[email protected]"
40
+
41
VOLUME /projects
42
WORKDIR /projects
43
0 commit comments