All checks were successful
Build and Push Container / build-and-push (push) Successful in 17s
5 lines
110 B
Docker
5 lines
110 B
Docker
FROM docker.io/library/nginx:alpine
|
|
COPY . /usr/share/nginx/html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|