Skip to content
Open
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
14 changes: 14 additions & 0 deletions client/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Exclude the dockerfile itself
Dockerfile

# Exclude Python caches and build artifacts
**/__pycache__
**/*.pyc
*.egg-info

# Exclude dev/test files not needed for the build
.dockerignore
.gitignore
shell.nix
test-requirements.txt
tox.ini
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04 AS python-builder

RUN apt-get update && \
apt-get install -y python3 python3-venv && \
apt-get install --no-install-recommends --no-install-suggests -y python3 python3-venv && \
rm -rf /var/lib/apt/lists/*

RUN python3 -m venv /venv && \
Expand Down
14 changes: 14 additions & 0 deletions operator/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Exclude the dockerfile itself
Dockerfile

# Exclude Python caches and build artifacts
**/__pycache__
**/*.pyc
*.egg-info

# Exclude dev/test files not needed for the build
.dockerignore
.gitignore
example.yaml
test-requirements.txt
tox.ini
2 changes: 1 addition & 1 deletion operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04 AS python-builder

RUN apt-get update && \
apt-get install -y python3 python3-venv && \
apt-get install --no-install-recommends --no-install-suggests -y python3 python3-venv && \
rm -rf /var/lib/apt/lists/*

RUN python3 -m venv /venv && \
Expand Down
2 changes: 1 addition & 1 deletion proxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ FROM ubuntu:24.04 AS nginx-gpg-key
ENV NGINX_GPG_KEY="2FD21310B49F6B46"

RUN apt-get update && \
apt-get install -y gnupg2 && \
apt-get install --no-install-recommends --no-install-suggests -y gnupg2 && \
rm -rf /var/lib/apt/lists/*

RUN gpg2 --keyserver hkp://keyserver.ubuntu.com:80 --keyserver-options timeout=10 --recv-keys "$NGINX_GPG_KEY" && \
Expand Down
13 changes: 13 additions & 0 deletions registrar/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Exclude the dockerfile itself
Dockerfile

# Exclude Python caches and build artifacts
**/__pycache__
**/*.pyc
*.egg-info

# Exclude dev/test files not needed for the build
.dockerignore
.gitignore
test-requirements.txt
tox.ini
2 changes: 1 addition & 1 deletion registrar/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04 AS python-builder

RUN apt-get update && \
apt-get install -y python3 python3-venv && \
apt-get install --no-install-recommends --no-install-suggests -y python3 python3-venv && \
rm -rf /var/lib/apt/lists/*

RUN python3 -m venv /venv && \
Expand Down
13 changes: 13 additions & 0 deletions sshd/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Exclude the dockerfile itself
Dockerfile

# Exclude Python caches and build artifacts
**/__pycache__
**/*.pyc
*.egg-info

# Exclude dev/test files not needed for the build
.dockerignore
.gitignore
test-requirements.txt
tox.ini
2 changes: 1 addition & 1 deletion sshd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04 AS python-builder

RUN apt-get update && \
apt-get install -y python3 python3-venv && \
apt-get install --no-install-recommends --no-install-suggests -y python3 python3-venv && \
rm -rf /var/lib/apt/lists/*

RUN python3 -m venv /venv && \
Expand Down
14 changes: 14 additions & 0 deletions sync/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Exclude the dockerfile itself
Dockerfile

# Exclude Python caches and build artifacts
**/__pycache__
**/*.pyc
*.egg-info

# Exclude dev/test files not needed for the build
# Note: chart/ is intentionally included — it is COPYed into the helm build stage
.dockerignore
.gitignore
test-requirements.txt
tox.ini
4 changes: 2 additions & 2 deletions sync/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:24.04 as helm

RUN apt-get update && \
apt-get install -y wget && \
apt-get install --no-install-recommends --no-install-suggests -y ca-certificates wget && \
rm -rf /var/lib/apt/lists/*

# Install yq from the official Docker image
Expand Down Expand Up @@ -41,7 +41,7 @@ RUN set -e; \
FROM ubuntu:24.04 AS python-builder

RUN apt-get update && \
apt-get install -y python3 python3-venv && \
apt-get install --no-install-recommends --no-install-suggests -y python3 python3-venv && \
rm -rf /var/lib/apt/lists/*

RUN python3 -m venv /venv && \
Expand Down
Loading