27 lines
955 B
Docker
27 lines
955 B
Docker
# An image to run e2e tests.
|
|
# The image does not include the tests; all necessary files are bind-mounted when a container starts.
|
|
FROM ubuntu:20.04
|
|
LABEL maintainer="Team ACID @ Zalando <team-acid@zalando.de>"
|
|
|
|
ENV TERM xterm-256color
|
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y \
|
|
python3 \
|
|
python3-setuptools \
|
|
python3-pip \
|
|
curl \
|
|
vim \
|
|
&& pip3 install --no-cache-dir -r requirements.txt \
|
|
&& curl -LO https://dl.k8s.io/release/v1.32.9/bin/linux/amd64/kubectl \
|
|
&& chmod +x ./kubectl \
|
|
&& mv ./kubectl /usr/local/bin/kubectl \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# working line
|
|
# python3 -m unittest discover -v --failfast -k test_e2e.EndToEndTestCase.test_lazy_spilo_upgrade --start-directory tests
|
|
ENTRYPOINT ["python3", "-m", "unittest"]
|
|
CMD ["discover","-v","--failfast","--start-directory","/tests"] |