mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-12 18:32:44 +00:00
24 lines
452 B
Docker
24 lines
452 B
Docker
FROM node:18-slim
|
|
|
|
ENV PORT 5000
|
|
EXPOSE $PORT
|
|
|
|
WORKDIR /app
|
|
|
|
RUN npm install pm2 -g && pm2 install typescript && npm cache clean --force;
|
|
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
|
|
COPY tsconfig.json .
|
|
COPY healthcheck.js .
|
|
|
|
COPY src ./src
|
|
COPY public ./public
|
|
COPY index.ts .
|
|
COPY config.ts .
|
|
|
|
RUN npm install && npm run build && npm cache clean --force
|
|
COPY opentelemetry.js .
|
|
|
|
CMD [ "node", "--require", "./opentelemetry.js", "./build/index.js"] |