FROM nginx:stable-alpine LABEL version="1.3" LABEL maintainer="Denys Vuika " COPY nginx.conf /etc/nginx/nginx.conf #COPY --chown=nginx:nginx ./docker-entrypoint.sh / COPY ./docker-entrypoint.sh / RUN chmod +x /docker-entrypoint.sh WORKDIR /usr/share/nginx/html COPY dist/app/ . ENTRYPOINT [ "/docker-entrypoint.sh" ]