mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-08 07:04:02 -05:00
13 lines
120 B
Docker
13 lines
120 B
Docker
FROM node:16-bullseye-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json .
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
CMD ["npm", "run", "start"]
|
|
|