mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
11 lines
213 B
Docker
11 lines
213 B
Docker
FROM nginx:stable-alpine
|
|
LABEL version="3.0.0"
|
|
|
|
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
|
|
COPY ./docker/entrypoint.sh /
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
COPY demo-shell/dist/ .
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|