X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=docker%2FDockerfile;h=932f31ee92b82a52f006608b4b2f517dad576711;hb=350dbf706fd7d8e162392c01fe8608a6e305c896;hp=c86c250008e2bbae3883a9edd64ac625bf450f81;hpb=c7872f8608cf7046b011f2526e7aec48806e17bb;p=osm%2FLW-UI.git diff --git a/docker/Dockerfile b/docker/Dockerfile index c86c250..932f31e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,10 +1,10 @@ -FROM ubuntu:16.04 +FROM ubuntu:16.04 WORKDIR /usr/share/osm-lightui COPY . /usr/share/osm-lightui RUN apt-get update -RUN apt-get install -y npm git python-pip nginx supervisor +RUN apt-get install -y npm git python-pip nginx supervisor libmysqlclient-dev mysql-client RUN npm install -g bower RUN ln -s /usr/bin/nodejs /usr/bin/node RUN bower install --allow-root @@ -19,11 +19,8 @@ COPY supervisor-app.conf /etc/supervisor/conf.d/ RUN rm -f db.sqlite3 ENV DJANGO_ENV=prod -RUN python manage.py makemigrations authosm -RUN python manage.py migrate RUN python manage.py collectstatic --noinput - EXPOSE 80 -CMD ["supervisord", "-n"] +CMD ["/usr/share/osm-lightui/entrypoint.sh"]