mirror of
https://github.com/Viren070/stremio-addon-manager.git
synced 2025-12-01 23:25:50 +01:00
18 lines
261 B
Docker
18 lines
261 B
Docker
FROM node:lts-alpine as builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json /app
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
FROM nginx:stable-alpine as production-stage
|
|
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|