1
0
Fork 1
mirror of https://github.com/bookwyrm-social/bookwyrm.git synced 2025-04-01 16:09:44 +00:00
bookwyrm/Dockerfile
2021-03-03 15:18:06 -08:00

12 lines
210 B
Docker

FROM python:3.9
ENV PYTHONUNBUFFERED 1
RUN mkdir /app /app/static /app/images
WORKDIR /app
COPY requirements.txt /app/
RUN pip install -r requirements.txt --no-cache-dir
COPY ./bookwyrm ./celerywyrm /app/