2020-03-22 11:21:19 -07:00
|
|
|
FROM python:3
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
2020-03-22 14:33:26 -07:00
|
|
|
RUN mkdir /app
|
2020-05-17 20:20:51 -07:00
|
|
|
RUN mkdir /app/static
|
|
|
|
RUN mkdir /app/images
|
2020-03-22 14:33:26 -07:00
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app/
|
2020-03-22 11:21:19 -07:00
|
|
|
RUN pip install -r requirements.txt
|
2020-09-17 14:13:44 -07:00
|
|
|
COPY ./bookwyrm /app
|
|
|
|
COPY ./celerywyrm /app
|