Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docops/AutoDoc container image #94

Merged
merged 8 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/docopstoghcr-on-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: docops Docker Image on Push to GHCR

on:
push:
branches-ignore:
- master
paths:
- 'docops/**'

jobs:
build_image_on_push:
permissions:
packages: write
security-events: write
actions: read
contents: read
uses: ./.github/workflows/imagetoghcr-on-push.yaml
with:
image_name: "docops"
context: "./docops/"
38 changes: 38 additions & 0 deletions docops/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
FROM quay.io/ansible/awx-ee:24.1.0

USER root

RUN \
# Add non-privileged user
adduser docops --uid 1000 --gid 0 && \
# Install drawio
dnf install -y wget && \
mkdir /home/docops/drawio && \
cd /home/docops/drawio && \
curl -s https://api.github.com/repos/jgraph/drawio-desktop/releases/latest | grep browser_download_url | grep '.*drawio-x86_64-.*\.rpm' | cut -d '"' -f 4 | wget -i - && \
dnf install -y ./drawio-x86_64-*.rpm && \
dnf remove -y wget && \
rm -rf /home/docops/drawio && \
# Install X Virtual Framebuffer as an X server because it's needed to execute drawio in a headless mode
# Later execute drawio with xvfb as the following.
# Remember to append the options '--disable-gpu --headless --no-sandbox' as the last options of the command.
# Examples:
# xvfb-run -a drawio --version --disable-gpu --headless --no-sandbox
# xvfb-run -a drawio --export --format png --output ./test.png ./test.drawio --disable-gpu --headless --no-sandbox
dnf install -y xorg-x11-server-Xvfb;



USER docops

RUN \
# Install doctoolchain
cd /home/docops && \
curl -Lo dtcw https://doctoolchain.org/dtcw && \
chmod +x ./dtcw && \
./dtcw install doctoolchain; \
./dtcw install java; \
# Install community.general collection, it contains the 'archive' module used in the doctoolchain playbook
ansible-galaxy collection install community.general;

CMD ["/bin/bash"]