Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,15 @@ RUN pnpm install --frozen-lockfile \
# Copy source and build
COPY tsconfig.json ./
COPY src/ ./src/
COPY scripts/ ./scripts/
COPY palettes/ ./palettes/
COPY data/ ./data/
COPY public/ ./public/
COPY landing/ ./landing/
COPY docs/ ./docs/
RUN pnpm build

# Generate bundled airports data
RUN pnpm tsx scripts/generate-airports.ts

CMD ["node", "dist/server/index.js"]
Loading