9 lines
206 B
Plaintext
9 lines
206 B
Plaintext
|
FROM base-core-app
|
||
|
|
||
|
# Install requirements
|
||
|
COPY test/requirements.txt .
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
# Entrypoint
|
||
|
#ENTRYPOINT ["pytest", "test/infra/api/fastapi/test_client_fastapi.py", "-k", "_"]
|