From 03a445e75902bcae9c7e2c8a7d7eb9c6077cef94 Mon Sep 17 00:00:00 2001 From: dandds Date: Sun, 14 Jul 2019 15:31:18 -0400 Subject: [PATCH] Copy USWDS fonts to static directory in Docker build. This step was missing from the initial Docker build and causing errors in fresh repositories. --- deploy/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/docker/Dockerfile b/deploy/docker/Dockerfile index abb00d2f..681515b4 100644 --- a/deploy/docker/Dockerfile +++ b/deploy/docker/Dockerfile @@ -35,6 +35,7 @@ COPY . . RUN pip install pipenv uwsgi && \ PIPENV_VENV_IN_PROJECT=1 pipenv install && \ yarn install && \ + cp -r ./node_modules/uswds/src/fonts ./static/ && \ yarn build ## NEW IMAGE