FROM nginx:1.19.2

# copy the files builded with npm run build
COPY build /var/www
COPY nginx.conf /etc/nginx/nginx.conf

EXPOSE 3000

ENTRYPOINT ["nginx","-g","daemon off;"]