parent
b72228ce36
commit
8e88fd8597
7 changed files with 83 additions and 151 deletions
16
Dockerfile
Normal file
16
Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
FROM node:lts AS build
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN npm i
|
||||
RUN npm run build
|
||||
|
||||
FROM node:lts AS runtime
|
||||
RUN npm install --global "@warren-bank/serve"
|
||||
|
||||
COPY --from=build /app/dist /public
|
||||
COPY --from=build /app/serve.json /public/serve.json
|
||||
|
||||
ENV PORT 5000
|
||||
EXPOSE 5000
|
||||
|
||||
CMD [ "serve" "public/" "-p" "5000" ]
|
Loading…
Add table
Add a link
Reference in a new issue