about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2021-12-22 00:32:06 +0100
committerGitHub <noreply@github.com>2021-12-22 00:32:06 +0100
commitee45f54e89724813bd414666352a2eb45243c7a7 (patch)
tree2f113ecd73c7dbf4096d21c04e50337636ac9ae5
parentd116d4b5cd36bccf0f499780f0e76e0f2e3559a9 (diff)
downloadshorest-ee45f54e89724813bd414666352a2eb45243c7a7.tar.zst
shorest-ee45f54e89724813bd414666352a2eb45243c7a7.zip
Fix Dockerfile client build script
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index b05a314..8d95794 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,7 +13,7 @@ COPY client/package.json ./
 COPY client/yarn.lock ./
 RUN yarn install
 COPY client ./
-RUN yarn export
+RUN yarn build
 
 FROM server-cache as server
 WORKDIR /server