ap-test/Dockerfile

24 lines
639 B
Docker

FROM python as builder
WORKDIR /src/
RUN git clone https://git.batsense.net/ForgeFlux/ftest-common-py .
RUN pip install -r requirements.txt
RUN python3 -m build
FROM python
LABEL org.opencontainers.image.source https://git.batsense.net/ForgeFlux/ap-test
RUN useradd -ms /bin/bash -u 1001 ap
RUN apt-get update && apt-get install -y ca-certificates git
WORKDIR /src/
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY --from=builder /src/dist/ftest_common-0.0.1-py3-none-any.whl .
RUN pip install ./ftest_common-0.0.1-py3-none-any.whl
USER ap
WORKDIR /home/ap
RUN mkdir app/
WORKDIR /home/ap/app/
COPY . .
CMD [ "behave"]