12 lines
240 B
Docker
12 lines
240 B
Docker
|
|
FROM opensuse/tumbleweed
|
|
ENV container=podman
|
|
|
|
ENV LANG=en_US.UTF-8
|
|
|
|
RUN zypper -vvvn install podman podman-compose vim make python3-pytest python3-requests python3-pytest-dependency
|
|
|
|
COPY . /opt/project/
|
|
|
|
WORKDIR /opt/project/integration
|