Files
Homepage/Dockerfile
2025-11-23 22:59:26 -05:00

6 lines
129 B
Docker

FROM nginx:alpine
LABEL maintainer="services-homepage"
COPY . /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]