From 7e321b53d53459a3dda013cabd1a32e035ff7de8 Mon Sep 17 00:00:00 2001 From: f0x Date: Fri, 10 Sep 2021 22:55:07 +0200 Subject: [PATCH] update Dockerfile with new css bundling --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8b44b6660..14293a85f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,10 +33,10 @@ FROM node:16.5.0-alpine3.11 AS web_builder RUN apk update && apk upgrade --no-cache COPY web /web -WORKDIR /web/source +WORKDIR /web/gotosocial-styling RUN yarn install -RUN node build.js +RUN BUILD_DIR=../assets node index.js # STEP THREE: bundle the admin webapp FROM node:16.5.0-alpine3.11 AS admin_builder