Remove tailwind and related scripts

This commit is contained in:
Nathan Sobo 2022-04-21 10:01:56 -06:00
parent 0cf7bba483
commit 8ed1598346
5 changed files with 0 additions and 2524 deletions

View file

@ -2,18 +2,8 @@
FROM rust:1.58-bullseye as builder
WORKDIR app
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
RUN apt-get install -y nodejs
COPY . .
# Install script dependencies
RUN --mount=type=cache,target=./script/node_modules \
cd ./script && npm install --quiet
# Build CSS
RUN --mount=type=cache,target=./script/node_modules \
script/build-css --release
# Compile collab server
RUN --mount=type=cache,target=./script/node_modules \
--mount=type=cache,target=/usr/local/cargo/registry \