about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-04-12 16:14:20 +0100
committerGitHub <noreply@github.com>2024-04-12 16:14:20 +0100
commitf3951f2718307ddbe1a4a90c599f777359513e4d (patch)
tree4d6939ef4d0d2fd986fa2417469dd35d886c316d
parented2c8b720edb0886f72e97539fc5b08d943dda42 (diff)
downloadvoidsky-f3951f2718307ddbe1a4a90c599f777359513e4d.tar.zst
remove build-embed from Dockerfile (#3502)
-rw-r--r--Dockerfile3
-rw-r--r--Makefile1
2 files changed, 1 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index e36a95929..3ad05b6ec 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -32,8 +32,7 @@ RUN \. "$NVM_DIR/nvm.sh" && \
   npm install --global yarn && \
   yarn && \
   yarn intl:build && \
-  yarn build-web && \
-  yarn build-embed
+  yarn build-web
 
 # DEBUG
 RUN find ./bskyweb/static && find ./web-build/static
diff --git a/Makefile b/Makefile
index 9e82e0fe4..c90abb783 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,6 @@ help: ## Print info about all commands
 build-web: ## Compile web bundle, copy to bskyweb directory
 	yarn intl:build
 	yarn build-web
-	yarn build-embed
 
 .PHONY: test
 test: ## Run all tests