aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorBen Woodward <ben@bdw.to>2021-07-04 16:48:10 -0700
committerGitHub <noreply@github.com>2021-07-04 16:48:10 -0700
commit52ff61635b1cbd4b024ae882b606cfb64d6cc897 (patch)
treede906f5b551d28d92048dcb65a8048fc718d3b9f /Dockerfile
parent313e5f8146a1f853269c2958fbbf4aa26c2422a8 (diff)
Prettier formatting (#33)
* Add prettier * Format code
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 5a5f92f..7d640ca 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,6 +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 yarn && yarn build 7RUN yarn && yarn build
7 8
8### 9###