newsreader/docker/django
sonny 6a4f33c182 Refactor endpoint tests
Replace force_login calls with login call from client class in setUp
2020-05-23 16:58:42 +02:00

10 lines
192 B
Text

FROM python:3.7-buster
RUN pip install poetry
WORKDIR /app
COPY poetry.lock pyproject.toml /app/
RUN poetry config virtualenvs.create false && poetry install --no-interaction
COPY . /app/