adding fonts, a global layout, and Docker deployment stuff.
This commit is contained in:
parent
e9d8a28901
commit
ab29a8629c
26 changed files with 457 additions and 81 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue