mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
16 lines
290 B
Docker
16 lines
290 B
Docker
FROM python:3.9
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN mkdir /app
|
|
RUN mkdir /app/static
|
|
RUN mkdir /app/images
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app/
|
|
RUN pip install -r requirements.txt
|
|
RUN apt-get update && apt-get install -y gettext libgettextpo-dev
|
|
|
|
COPY ./bookwyrm /app
|
|
COPY ./celerywyrm /app
|