ownership problem fix
This commit is contained in:
+2
-3
@@ -2,14 +2,13 @@ FROM python:3.12-slim
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Bez nastaveného locale dekóduje kontejner výstupy v C/ASCII a česká diakritika
|
|
||||||
# se rozbije. C.UTF-8 je v python:slim vždy k dispozici.
|
|
||||||
ENV LANG=C.UTF-8 \
|
ENV LANG=C.UTF-8 \
|
||||||
LC_ALL=C.UTF-8 \
|
LC_ALL=C.UTF-8 \
|
||||||
PYTHONIOENCODING=utf-8
|
PYTHONIOENCODING=utf-8
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends git curl \
|
&& apt-get install -y --no-install-recommends git curl \
|
||||||
|
&& git config --system --add safe.directory "*" \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
@@ -19,4 +18,4 @@ COPY app ./app
|
|||||||
|
|
||||||
EXPOSE 9100
|
EXPOSE 9100
|
||||||
|
|
||||||
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "9100", "--root-path", "/portal"]
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "9100", "--root-path", "/portal"]
|
||||||
Reference in New Issue
Block a user