Dockerfile 631 B

1234567891011121314151617181920212223242526
  1. FROM nikolaik/python-nodejs:python3.9-nodejs14
  2. MAINTAINER Bernhard <buhl@buhl-consulting.com.cy>
  3. RUN echo "Europe/London" > /etc/timezone && \
  4. export TZ="/usr/share/zoneinfo/Europe/London"
  5. RUN apt-get update && \
  6. apt-get install git
  7. WORKDIR /root/
  8. CMD mkdir -p /root/showcase
  9. # Install polzy
  10. RUN git clone https://gogs.earthsquad.global/athos/PoLZy_Showcase && \
  11. git clone https://gogs.earthsquad.global/athos/PoLZy && \
  12. pip install -U -r /root/PoLZy_Showcase/requirements.txt
  13. WORKDIR /root/PoLZy/polzy-frontend
  14. RUN npm install
  15. EXPOSE 3000 5000
  16. ENV USER root
  17. CMD ["/root/PoLZy_Showcase/runAllinDocker.sh"]