bookwyrm/Dockerfile

17 lines
290 B
Docker
Raw Normal View History

FROM python:3.9
ENV PYTHONUNBUFFERED 1
2020-03-22 21:33:26 +00:00
RUN mkdir /app
RUN mkdir /app/static
RUN mkdir /app/images
2020-03-22 21:33:26 +00:00
WORKDIR /app
2020-03-22 21:33:26 +00:00
COPY requirements.txt /app/
2020-03-22 18:21:19 +00:00
RUN pip install -r requirements.txt
2021-03-01 17:55:54 +00:00
RUN apt-get update && apt-get install -y gettext libgettextpo-dev
2020-09-17 21:13:44 +00:00
COPY ./bookwyrm /app
COPY ./celerywyrm /app