diff options
| author | Bobby <[email protected]> | 2023-11-10 18:43:11 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-11-10 18:43:11 -0500 |
| commit | b937f0571e4047d360bb5822833c8f47d63e419b (patch) | |
| tree | 8b3e9ab2b8e2d62dadb2eaec46e143fadfd2a93e /Dockerfile | |
| parent | c04e694275fe3193d4eef548ee63f4bc1ec121f9 (diff) | |
| download | thatcomputerscientist-b937f0571e4047d360bb5822833c8f47d63e419b.tar.xz thatcomputerscientist-b937f0571e4047d360bb5822833c8f47d63e419b.zip | |
Update Dockerfile
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 |
