mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
32 lines
580 B
Docker
32 lines
580 B
Docker
FROM --platform=linux/amd64 node:20-alpine
|
|
|
|
# ? App setup
|
|
|
|
RUN apk --update add \
|
|
python3 \
|
|
make \
|
|
g++ \
|
|
gcompat \
|
|
libstdc++
|
|
|
|
RUN apk add --no-cache bash curl && curl -1sLf \
|
|
'https://dl.cloudsmith.io/public/infisical/infisical-cli/setup.alpine.sh' | bash \
|
|
&& apk add infisical=0.8.1 && apk add --no-cache git
|
|
|
|
|
|
ENV ChrystokiConfigurationPath=/usr/safenet/lunaclient/
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package.json
|
|
COPY package-lock.json package-lock.json
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
ENV HOST=0.0.0.0
|
|
|
|
CMD ["npm", "run", "dev:docker"]
|