Skip to content

Commit

Permalink
Add Dockerfile for nginx pod (#9050)
Browse files Browse the repository at this point in the history
* DockerFile nginx

Signed-off-by: oviner <[email protected]>
  • Loading branch information
OdedViner authored Jan 17, 2024
1 parent d358e17 commit 118839a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Docker_files/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Use a base image with QEMU for multi-architecture support.
FROM --platform=$BUILDPLATFORM nginx:alpine

RUN apk update
RUN apk upgrade
RUN apk add fio bash
RUN apk add --no-cache util-linux


# Build and Push the multi-architecture Docker image using Docker Buildx:
# docker buildx build --platform linux/amd64,linux/ppc64le,linux/s390x,linux/arm64 -t quay.io/ocsci/nginx:<tag> . --push

0 comments on commit 118839a

Please sign in to comment.