FROM nginx:stable-alpine
COPY ./packages/components/storybook-static /usr/share/nginx/html
COPY ./nginx/index.html /usr/share/nginx/html/live/

RUN rm /etc/nginx/conf.d/default.conf
COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 3000

