diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,10 +15,11 @@ WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt -COPY . . +COPY . ./app RUN python manage.py collectstatic --noinput +RUN python manage.py migrate EXPOSE 8080 |
