7 lines
175 B
Docker
7 lines
175 B
Docker
FROM nginx:stable-alpine-slim
|
|
LABEL authors="tebarius"
|
|
LABEL description="nginx_with_404_and_502_games"
|
|
|
|
COPY ./games /usr/share/nginx/html
|
|
CMD ["nginx", "-g", "daemon off;"]
|