mirror of
https://github.com/OtusTeam/Spring.git
synced 2026-05-30 10:50:42 +00:00
5 lines
120 B
Docker
5 lines
120 B
Docker
FROM nginx:1.11-alpine
|
|
COPY ../index.html /usr/share/nginx/html/index.html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|