mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00: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"]
|
|
|