mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
13 lines
244 B
Docker
13 lines
244 B
Docker
FROM nginx:stable-alpine
|
|
LABEL version="3.0.0"
|
|
|
|
ARG PROJECT_NAME=demo-shell
|
|
|
|
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
|
|
COPY ./docker/entrypoint.sh /
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
COPY dist/$PROJECT_NAME .
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|