浏览代码

ensure media/images/ directory exists so Docker volume will inherit its permissions

Tobias McNulty 5 年之前
父节点
当前提交
e1106a1fa8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -60,7 +60,7 @@ ENV UWSGI_STATIC_MAP="/media/=/code/bakerydemo/media/"
 RUN DATABASE_URL=postgres://none REDIS_URL=none /venv/bin/python manage.py collectstatic --noinput
 
 # make sure static files are writable by uWSGI process
-RUN chown -R 1000:2000 /code/bakerydemo/media
+RUN mkdir -p /code/bakerydemo/media/images && chown -R 1000:2000 /code/bakerydemo/media
 
 # mark the destination for images as a volume
 VOLUME ["/code/bakerydemo/media/images/"]