mirror of
https://github.com/RoboSats/robosats-web-host.git
synced 2025-07-19 01:03:34 +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;"]
|