sepolia deployment

This commit is contained in:
tim
2025-10-23 13:53:48 -04:00
parent 380c77b37e
commit a1e73df30a
13 changed files with 524 additions and 55 deletions

10
deploy/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM nginx:stable-alpine
RUN apk update && apk upgrade
WORKDIR /liquidity.party/web
COPY out ./out
RUN sed -i '1idaemon off;' /etc/nginx/nginx.conf
COPY deploy/nginx.conf /etc/nginx/conf.d/default.conf
CMD ["nginx"]