mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
15 lines
317 B
Docker
15 lines
317 B
Docker
FROM nginx:stable-alpine
|
|
LABEL version="1.3"
|
|
LABEL maintainer="Denys Vuika <denys.vuika@alfresco.com>"
|
|
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
COPY --chown=nginx:nginx ./docker-entrypoint.sh /
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
COPY dist/app/ .
|
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|