1
0
Fork 1
mirror of https://github.com/bookwyrm-social/bookwyrm.git synced 2025-03-31 07:29:37 +00:00
bookwyrm/Dockerfile
2021-06-05 12:53:03 -07:00

10 lines
174 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