-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDockerfile
35 lines (25 loc) · 1.08 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Use the official Python image as a base
FROM python:3.9-slim
# Set the working directory
WORKDIR /
RUN apt-get update && apt-get install -y apt-utils curl
RUN curl -1sLf 'https://dl.cloudsmith.io/public/cloudposse/packages/cfg/setup/bash.deb.sh' | bash
RUN apt-get install -y terraform-docs
# Copy the Python requirements file into the container
COPY ./docs-collator/requirements.txt scripts/docs-collator/requirements.txt
# Install the Python dependencies
RUN pip install --no-cache-dir -r scripts/docs-collator/requirements.txt && \
apt-get update && \
apt-get install -y git && \
apt-get clean
# Copy the rest of the application files into the container
COPY . /scripts
# Make the render scripts executable
RUN chmod +x /scripts/*.sh
# Set the environment variable for GitHub access token
ARG PUBLIC_REPO_ACCESS_TOKEN
ENV PUBLIC_REPO_ACCESS_TOKEN=${PUBLIC_REPO_ACCESS_TOKEN}
# Command to render documentation for Terraform components
CMD ["/scripts/render-docs-for-components.sh"]
# The entry point to render documentation for Terraform modules
ENTRYPOINT ["/bin/bash", "-c"]