mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 07:28:09 -05:00
19 lines
326 B
Docker
19 lines
326 B
Docker
FROM node:16-bullseye-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
|
|
# RUN npm ci --only-production --ignore-scripts
|
|
# "prepare": "cd .. && npm install"
|
|
|
|
RUN npm ci --only-production
|
|
|
|
COPY . .
|
|
|
|
HEALTHCHECK --interval=10s --timeout=3s --start-period=10s \
|
|
CMD node healthcheck.js
|
|
|
|
|
|
CMD ["npm", "run", "start"]
|