All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 14s
7 lines
278 B
Docker
7 lines
278 B
Docker
FROM nginx:alpine
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
COPY style/style.css /usr/share/nginx/html/style/style.css
|
|
COPY assets/*.svg /usr/share/nginx/html/assets/
|
|
COPY assets/favicon.png /usr/share/nginx/html/assets/
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"] |