Compare commits
2 Commits
c5896e9c06
...
7803e845dd
| Author | SHA1 | Date | |
|---|---|---|---|
| 7803e845dd | |||
| 67784df7e1 |
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM oven/bun:alpine AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
ENV NODE_ENV=production
|
||||
ENV CI=true
|
||||
RUN bun install --frozen-lockfile --production
|
||||
|
||||
RUN bun run build
|
||||
|
||||
FROM joseluisq/static-web-server:2-alpine AS runner
|
||||
|
||||
WORKDIR /public
|
||||
|
||||
COPY --from=builder /app/dist .
|
||||
ENV SERVER_ROOT="/public"
|
||||
|
||||
EXPOSE 80
|
||||
@@ -12,7 +12,7 @@ export default defineConfig({
|
||||
backgroundColor: 'neutral.1',
|
||||
color: 'neutral.12',
|
||||
fontFamily: "'Roboto Variable', sans-serif",
|
||||
lineHeight: 'normal'
|
||||
lineHeight: 'tight'
|
||||
},
|
||||
'*, *::before, *::after': {
|
||||
margin: 0,
|
||||
@@ -20,13 +20,14 @@ export default defineConfig({
|
||||
boxSizing: 'border-box'
|
||||
},
|
||||
'h1, h2, h3, h4, h5, h6': {
|
||||
fontWeight: '700'
|
||||
fontWeight: '700',
|
||||
textWrap: 'balance',
|
||||
lineHeight: 'normal'
|
||||
},
|
||||
h1: {
|
||||
fontFamily: 'orbitron',
|
||||
fontWeight: '900',
|
||||
fontSize: 'h1',
|
||||
textWrap: 'balance'
|
||||
fontSize: 'h1'
|
||||
},
|
||||
h2: {
|
||||
fontSize: 'h2'
|
||||
|
||||
Reference in New Issue
Block a user