Files
fog-explorer/fog/apps/twitch-extension-panel/Dockerfile

13 lines
269 B
Docker
Raw Normal View History

2026-04-12 15:35:50 +00:00
FROM node:20-alpine AS build
WORKDIR /workspace
COPY package.json ./
RUN npm install
COPY . .
RUN npx nx build twitch-extension-panel
FROM nginx:alpine
COPY --from=build /workspace/dist/apps/twitch-extension-panel/browser /usr/share/nginx/html
EXPOSE 80