mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
16 lines
348 B
Docker
16 lines
348 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 /
|
|
COPY ./docker-entrypoint.sh /
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
COPY dist/app/ .
|
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|