fixbluesky/Dockerfile
Rose e16300aeb2
Some checks failed
Build Docker Image / build-image (push) Failing after 38s
Semver / semver (push) Failing after 5s
💚 try ci again hopefully
2024-10-16 11:52:45 -05:00

29 lines
530 B
Docker

FROM node:21-alpine AS base
FROM base AS builder
RUN apk add --no-cache libc6-compat
RUN apk update
RUN yarn set version canary
RUN yarn config set nodeLinker node-modules
WORKDIR /app
COPY .gitignore .gitignore
COPY package.json ./
COPY yarn.lock ./
RUN yarn install --immutable
COPY . .
RUN yarn build
FROM base AS runner
WORKDIR /app
# Don't run production as root
RUN addgroup --system --gid 1001 fixbluesky
RUN adduser --system --uid 1001 fixbluesky
USER fixbluesky
COPY --from=builder /app .
CMD node ./dist/main.js