feat: 👷 Add linting workflow, add Node to Docker building step

This commit is contained in:
Jesse Wierzbinski 2024-07-11 13:25:31 +02:00
parent be3bced531
commit 65abaa9c7b
No known key found for this signature in database
3 changed files with 37 additions and 1 deletions

View file

@ -2,6 +2,9 @@ FROM oven/bun:1.1.18-alpine AS base
RUN apk add --no-cache libstdc++
# Add Node.js
COPY --from=node:22-alpine /usr/local/bin/node /usr/local/bin/node
# Install dependencies into temp directory
# This will cache them and speed up future builds
FROM base AS install