8 lines
203 B
Docker
8 lines
203 B
Docker
FROM debian:bullseye-slim
|
|
|
|
RUN apt update && apt install -y wget curl git;
|
|
|
|
RUN git config --global user.email "integration-tests@coopcloud.tech";
|
|
|
|
RUN git config --global user.name "integration-tests";
|