MAINTAINER Guillaume Pellerin <yomguy@parisson.com>, Thomas fillon <thomas@parisson.com>
# install confs, keys and deps
-RUN apt-key adv --keyserver pgp.mit.edu --recv-key E3298399DF14BB7C && \
- echo 'deb http://http.debian.net/debian wheezy-backports main contrib non-free' > /etc/apt/sources.list.d/wheezy-backports.list && \
+RUN echo 'deb http://http.debian.net/debian wheezy-backports main contrib non-free' > /etc/apt/sources.list.d/wheezy-backports.list && \
echo 'deb http://debian.parisson.com/debian/ wheezy main' > /etc/apt/sources.list.d/parisson.list && \
apt-get update && \
apt-get -y --force-yes -t wheezy-backports dist-upgrade && \
- apt-get install -y --force-yes python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad gstreamer0.10-alsa vamp-examples && \
+ apt-get install -y --force-yes python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad gstreamer0.10-alsa vamp-examples libmysqlclient-dev && \
apt-get install -y --force-yes -t wheezy-backports python-yaafe && \
apt-get install -y --force-yes wget bzip2 build-essential && \
apt-get clean
#!/bin/sh
-./manage.py schemamigration timeside --auto
-./manage.py migrate timeside
+./manage.py schemamigration timeside.server--auto
+./manage.py migrate timeside.server
date_added = models.DateTimeField(_('date added'), auto_now_add=True)
date_modified = models.DateTimeField(_('date modified'), auto_now=True,
null=True)
- uuid = models.CharField(_('uuid'), unique=True, blank=True, max_length=512)
+ uuid = models.CharField(_('uuid'), unique=True, blank=True, max_length=255)
class Meta(MetaCore):
abstract = True