aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorBen Woodward <ben@bdw.to>2021-07-15 14:44:00 -0700
committerGitHub <noreply@github.com>2021-07-15 14:44:00 -0700
commitf82c096aeb6970bed54eb6e5424ba303965ef252 (patch)
tree85f257e64c90e00754d3f476e8e6d61bd01625d6 /Dockerfile
parentc6fb2f011505a3e1892e1fb24f4df850c55bb57d (diff)
Only run Prettier on ./src (#55)
* Move base stylesheet input public * Only run prettier on ./src
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 7d640ca..91bc3af 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,7 @@ FROM mhart/alpine-node:14 as builder
3WORKDIR /tmp 3WORKDIR /tmp
4COPY . . 4COPY . .
5 5
6RUN npx prettier --check . '!**/*.min.{css,js}' 6RUN npx prettier --check ./src
7RUN yarn && yarn build 7RUN yarn && yarn build
8 8
9### 9###