mirror of
https://github.com/CERT-Polska/mailgoose.git
synced 2026-05-30 11:19:13 +02:00
14 lines
233 B
Docker
14 lines
233 B
Docker
FROM python:latest
|
|
|
|
COPY test/requirements.txt /requirements.txt
|
|
RUN pip install -r /requirements.txt
|
|
|
|
COPY common/wait-for-it.sh /wait-for-it.sh
|
|
|
|
RUN mkdir /test
|
|
COPY test/*.py /test
|
|
|
|
WORKDIR /test/
|
|
|
|
CMD python -m unittest discover
|