# Template for Dockerfile with wildcard DTR_PREFIX and DTR_ORG for external build pipelines
# Will be used to generate temporary Dockerfile by build.sh script
FROM %%DTR_PREFIX%%%%DTR_ORG%%/centos7-nginx
# FROM URL:PORT/images/centos7-nginx:latest

COPY ./dist /var/www/html/myvaimages

EXPOSE PORT

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