Skip to content

Commit

Permalink
nginx with kubectl
Browse files Browse the repository at this point in the history
  • Loading branch information
SawyerCzupka committed Oct 23, 2024
1 parent 837e45c commit a49bd0e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions deployment/images/Dockerfile.nginx_kubectl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# First, create a Dockerfile to build the custom image
FROM openresty/openresty:alpine

# Install kubectl
RUN wget -O /usr/local/bin/kubectl https://dl.k8s.io/release/v1.28.0/bin/linux/amd64/kubectl && \
chmod +x /usr/local/bin/kubectl

# Create directory for scripts
RUN mkdir /scripts && chmod 755 /scripts

0 comments on commit a49bd0e

Please sign in to comment.