~cadence/public-inbox

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch

[PATCH] Add Dockerfile

Details
Message ID
<20210107150329.16635-1-mail@perflyst.de>
DKIM signature
missing
Download raw message
Patch: +8 -0
---
 Dockerfile | 8 ++++++++
 1 file changed, 8 insertions(+)
 create mode 100644 Dockerfile

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..e9318a6
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,8 @@
FROM node:14.5.0-alpine as build
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build

FROM nginx:alpine as app
COPY --from=build /app/build/ /usr/share/nginx/html/
-- 
2.17.1
Reply to thread Export thread (mbox)