
This also adds a new Dockerfile for a e2e-test-image, as the old image was hosted on our private registry. By having the image located near the code, we don't have to rely on images on external registries.
10 lines
229 B
Docker
10 lines
229 B
Docker
# Minimal working Docker image used in our e2e tests
|
|
FROM python:latest
|
|
|
|
RUN useradd --home-dir /workspace --no-create-home --user-group user && \
|
|
mkdir /workspace && chown user:user /workspace
|
|
|
|
WORKDIR /workspace
|
|
|
|
USER user
|