diff --git a/Dockerfile.k8s b/Dockerfile.k8s index 23368f3..b5e6afd 100644 --- a/Dockerfile.k8s +++ b/Dockerfile.k8s @@ -33,9 +33,6 @@ RUN pip wheel --no-cache-dir --no-deps --wheel-dir /app/wheels -r requirements.t FROM python:3.11.4-slim-buster -# create the app user -#RUN addgroup --system app && adduser --system --group app - # create the appropriate directories ENV APP_HOME=/app RUN mkdir -p $APP_HOME @@ -56,11 +53,8 @@ COPY ./entrypoint.sh . # copy project COPY . $APP_HOME -# chown all the files to the app user -#RUN chown -R app:app $APP_HOME - # change to the app user -#USER app + WORKDIR $APP_HOME/src # run entrypoint.sh diff --git a/src/templates/acerca_de.html b/src/templates/acerca_de.html index f4a8ae3..14e0bdc 100644 --- a/src/templates/acerca_de.html +++ b/src/templates/acerca_de.html @@ -1,5 +1,7 @@ {% extends "base.html" %} +{% load filtros_de_entorno %} + {% block content %}

Acerca de...

@@ -10,7 +12,13 @@