docker volume

    [배포해보기 (10)] collectstatic; static file 받지 못하는 문제의 해결

    settings.py STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') STATICFILES_DIRS = [ BASE_DIR / "static", ] collectstatic python manage.py collectstatic 로컬에서 collectstatic 해도 달라질건 없기때문에 로컬은 놔두고 dockerfile에 입력해준다. FROM python:3.9.0 WORKDIR /home/ RUN git clone https://github.com/Aiden-Kwak/oconnect2021_ver4.git WORKDIR /home/oconnect2021_ver4/ RUN pip install -r requiremen..