mirror of
https://github.com/RoboSats/robosats-web-host.git
synced 2025-09-19 18:34:53 +00:00
8 lines
116 B
Docker
8 lines
116 B
Docker
FROM nginx:stable-alpine
|
|
|
|
COPY build /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
EXPOSE 443
|
|
CMD ["nginx", "-g", "daemon off;"]
|