2
0
Fork 0
bookwyrm/Dockerfile

14 lines
201 B
Text
Raw Normal View History

FROM python:3.9
ENV PYTHONUNBUFFERED 1
RUN mkdir /app /app/static /app/images
2020-03-22 14:33:26 -07:00
WORKDIR /app
COPY pyproject.toml poetry.lock ./
RUN poetry install --no-dev
COPY ./bookwyrm ./celerywyrm ${APP_DIR}/