2
0
Fork 0
bookwyrm/Dockerfile

8 lines
156 B
Text
Raw Normal View History

2020-03-22 11:21:19 -07:00
FROM python:3
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
COPY requirements.txt /code/
RUN pip install -r requirements.txt
COPY ./fedireads /code