2
0
Fork 0
bookwyrm/Dockerfile

14 lines
249 B
Text
Raw Permalink Normal View History

FROM python:3.11
ENV PYTHONUNBUFFERED 1
RUN mkdir /app /app/static /app/images
2020-03-22 14:33:26 -07:00
WORKDIR /app
RUN apt-get update && apt-get install -y gettext libgettextpo-dev tidy && apt-get clean
COPY pyproject.toml poetry.lock ./
RUN poetry install --no-dev