mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-15 21:31:26 +00:00
7 lines
152 B
Docker
7 lines
152 B
Docker
FROM python:3
|
|
ENV PYTHONUNBUFFERED 1
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
COPY requirements.txt /app/
|
|
RUN pip install -r requirements.txt
|
|
COPY ./fedireads /app
|