Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Kamani committed Jan 10, 2024
1 parent fe1ba9e commit 7320c50
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
5 changes: 3 additions & 2 deletions helm-oc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM ubuntu:22.04

RUN apt-get update
RUN apt-get install curl -y
RUN apt-get update && apt-get install curl=7.81.0-1ubuntu1.15 -y --no-install-recommend \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
RUN chmod 700 get_helm.sh
RUN ./get_helm.sh
Expand Down
12 changes: 5 additions & 7 deletions helm-oc/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Helm-oc Docker Image
This repository contains a Docker image based on the latest stable version of Ubuntu, designed to provide an environment with Helm, OpenShift CLI (oc), and OpenShift Client tools installed. This image is useful for users who need a lightweight containerized environment for managing Kubernetes clusters, deploying applications using Helm, and interacting with OpenShift-specific resources.

This repository contains a Docker image based on the latest stable version of Ubuntu, designed to provide an environment with Helm, OpenShift CLI (oc), and OpenShift Client tools installed. This image is useful for users who need a lightweight containerized environment for managing Kubernetes clusters, deploying applications using Helm, and interacting with OpenShift-specific resources.

## Docker Image Details

- **Base Image**: Ubuntu (latest stable version)
- **Package Managers**: Helm, OpenShift CLI (oc)
- **Image Size**: The size of the image is kept minimal to reduce resource consumption.

- **Base Image**: Ubuntu (latest stable version)
- **Package Managers**: Helm, OpenShift CLI (oc)
- **Image Size**: The size of the image is kept minimal to reduce resource consumption.

## Included Tools

Expand All @@ -27,10 +26,9 @@ To use this Docker image, you must have Docker installed on your system.

You can pull the latest version of the image from Docker Hub using the following command:


You can pull the latest version of the image from Docker Hub using the following command:

`docker pull demtag/helm-oc:latest`
`docker pull demtag/helm-oc:latest`

### Running the Container

Expand Down

0 comments on commit 7320c50

Please sign in to comment.