mirror of
https://github.com/KoriIku/luxirty-search
synced 2024-11-21 08:08:33 +00:00
5 lines
96 B
Docker
5 lines
96 B
Docker
FROM nginx:1.27
|
|
COPY ./dist/ /usr/share/nginx/html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|