All checks were successful
trivy-scan-image / trivy_image_scan (push) Successful in 22s
10 lines
211 B
Docker
10 lines
211 B
Docker
FROM nginxinc/nginx-unprivileged:stable-alpine-slim
|
|
LABEL authors="tebarius"
|
|
LABEL description="nginx_with_404_and_502_games"
|
|
|
|
USER root
|
|
RUN apk upgrade --no-cache
|
|
|
|
USER nginx
|
|
COPY ./games /usr/share/nginx/html
|