Skip to content
Snippets Groups Projects
Dockerfile 379 B
Newer Older
Vincent Mazenod's avatar
Vincent Mazenod committed
FROM debian:stable

RUN apt-get update && apt-get install -y --no-install-recommends \
        python3 \
        python3-pip \
        locales \
    && \
    locale-gen fr_FR \
    locale-gen fr_FR.UTF-8 \
    update-locale LANG=fr_FR.UTF-8 \
    . /etc/default/locale

COPY requirements.txt .
RUN pip install --break-system-packages --user -r requirements.txt
Vincent Mazenod's avatar
Vincent Mazenod committed

WORKDIR /srv/blog