Migrate to npm and cleanup css

This commit is contained in:
Dave Gallant
2024-01-08 17:21:23 -05:00
parent f0d0771ed2
commit 7501e07e19
8 changed files with 4016 additions and 8093 deletions

View File

@@ -4,11 +4,11 @@ WORKDIR /app
COPY package*.json ./
RUN yarn install
RUN npm install
COPY . .
RUN yarn build
RUN npm run build
FROM caddy:2.7.6-alpine as runtime