FROM nginx:alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . /usr/share/nginx/html
RUN npm run build
EXPOSE 3466