mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 01:57:57 +00:00
a9681f7c9f
- Update @pezkuwi/react-identicon to ^3.17.1 - Update @pezkuwi/react-qr to ^3.17.1 - Update @pezkuwi/ui-keyring to ^3.17.1 - Update @pezkuwi/ui-settings to ^3.17.1 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
214 B
Docker
13 lines
214 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy build files
|
|
COPY packages/apps/build /usr/share/nginx/html
|
|
|
|
# Copy nginx config
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Expose port
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|