mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* initial work * shared link created through API * add tests for share file on all list views * remove utc for end of day * remove hours and minutes * update unit test * workaround * update docker settings for tomcat * tomcat setup for e2e
14 lines
296 B
Docker
14 lines
296 B
Docker
FROM nginx:stable-alpine
|
|
LABEL version="1.4"
|
|
LABEL maintainer="Denys Vuika <denys.vuika@alfresco.com>"
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
COPY ./docker-entrypoint.sh /
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
COPY dist/app/ .
|
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|