b341d300d2
Initial commit Changes to be committed: Vim swapfiles new file: .gitignore Minimal compose yml new file: docker-compose.yml Iterative Dockerfile new file: striker/Dockerfile
14 lines
335 B
Docker
14 lines
335 B
Docker
FROM almalinux:latest
|
|
|
|
RUN sed -i 's/enabled=0/enabled=1/g' /etc/yum.repos.d/almalinux-highavailability.repo
|
|
|
|
RUN dnf install -y https://alteeve.com/an-repo/m3/alteeve-release-latest.noarch.rpm
|
|
|
|
RUN yes | alteeve-repo-setup
|
|
|
|
RUN dnf install -y anvil-striker --nobest
|
|
|
|
RUN anvil-change-password --new-password "Initial1"
|
|
|
|
CMD /bin/bash
|