Skip to content
Snippets Groups Projects
Dockerfile 292 B
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    FROM cozy/cozy-app-dev
    
    COPY docker-entrypoint.sh /usr/local/bin/
    COPY cozy-app-dev-with-app.sh /usr/bin/
    RUN ln -s /usr/local/bin/docker-entrypoint.sh / # backwards compat
    RUN ln -s /usr/bin/cozy-app-dev-with-app.sh / # backwards compat
    
    ENTRYPOINT [ "/usr/local/bin/docker-entrypoint.sh" ]