Skip to content

Commit

Permalink
label dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
eumel8 committed Jan 23, 2025
1 parent bf7c31c commit c44c543
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nginx-non-root/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM docker.io/nginx:alpine
LABEL org.opencontainers.image.source = "https://github.com/mcsps/docker-images"

# source: https://github.com/nginxinc/docker-nginx-unprivileged/

# Add System Tools

RUN apk add --update --no-cache bash curl wget git busybox-extras mysql-client && apk upgrade
# implement changes required to run NGINX as an unprivileged user
RUN sed -i -e '/listen/!b' -e '/80;/!b' -e 's/80;/8080;/' /etc/nginx/conf.d/default.conf \
Expand Down
2 changes: 1 addition & 1 deletion socat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:latest
LABEL org.opencontainers.image.source = "https://github.com/mcsps/docker-images"

# Install socat
RUN apk add --no-cache socat

1 change: 1 addition & 0 deletions utils/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM alpine:latest
LABEL org.opencontainers.image.source = "https://github.com/mcsps/docker-images"
RUN apk --no-cache add ca-certificates bash curl git jq openssl mysql-client restic sqlite net-tools

RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x kubectl && mv kubectl /usr/local/bin/kubectl
Expand Down

0 comments on commit c44c543

Please sign in to comment.