Add Dockerfile for production build with HTTP server
This commit is contained in:
18
web/client/Dockerfile
Normal file
18
web/client/Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# Production build with simple HTTP server
|
||||||
|
FROM node:18-alpine
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY package*.json ./
|
||||||
|
|
||||||
|
RUN npm install
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
RUN npm install -g serve
|
||||||
|
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
CMD ["serve", "-s", "dist", "-l", "3000"]
|
||||||
Reference in New Issue
Block a user