mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-22 01:21:07 +00:00
8 lines
156 B
Docker
8 lines
156 B
Docker
|
FROM python:3
|
||
|
ENV PYTHONUNBUFFERED 1
|
||
|
RUN mkdir /code
|
||
|
WORKDIR /code
|
||
|
COPY requirements.txt /code/
|
||
|
RUN pip install -r requirements.txt
|
||
|
COPY ./fedireads /code
|