mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
14 lines
363 B
Docker
14 lines
363 B
Docker
FROM node:18-slim
|
|
WORKDIR app/
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci
|
|
RUN npm cache clean --force
|
|
COPY . .
|
|
|
|
RUN apt-get update && apt-get install -y bash curl && curl -1sLf \
|
|
'https://dl.cloudsmith.io/public/infisical/infisical-cli/setup.deb.sh' | bash \
|
|
&& apt-get update && apt-get install -y infisical=0.8.1
|
|
|
|
|
|
CMD [ "npm", "run", "start:dev" ]
|