2024-03-02 15:57:06 -08:00
|
|
|
FROM python:3.11
|
2020-11-07 18:25:31 -08:00
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
2021-03-03 12:11:28 +01:00
|
|
|
RUN mkdir /app /app/static /app/images
|
2020-11-07 18:25:31 -08:00
|
|
|
|
2020-03-22 14:33:26 -07:00
|
|
|
WORKDIR /app
|
2020-11-07 18:25:31 -08:00
|
|
|
|
2022-06-05 14:49:21 -07:00
|
|
|
RUN apt-get update && apt-get install -y gettext libgettextpo-dev tidy && apt-get clean
|
|
|
|
|
2021-03-24 12:37:42 -04:00
|
|
|
|
|
|
|
COPY pyproject.toml poetry.lock ./
|
|
|
|
RUN poetry install --no-dev
|