mirror of
https://github.com/suitenumerique/docs.git
synced 2026-08-23 16:02:27 +02:00
14 lines
239 B
Docker
14 lines
239 B
Docker
# trixie for glibc >= 2.38 — uws prebuilt binaries reject bookworm's 2.36
|
|
FROM node:22-trixie AS yhub
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci --omit=dev
|
|
|
|
COPY server.js ./
|
|
|
|
EXPOSE 3002
|
|
|
|
CMD ["node", "server.js"]
|