adding fonts, a global layout, and Docker deployment stuff.

This commit is contained in:
Dave Lane 2024-08-16 17:01:16 +12:00
parent e9d8a28901
commit ab29a8629c
26 changed files with 457 additions and 81 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
# Dockerfile
FROM node:16-alpine
RUN npm install -g pnpm
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm build
EXPOSE 3000
CMD ["node", "build"]