mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-08 23:18:05 -05:00
21 lines
320 B
Docker
21 lines
320 B
Docker
# Base layer
|
|
FROM node:16-alpine
|
|
|
|
# Set the working directory
|
|
WORKDIR /app
|
|
|
|
# Copy over dependency files
|
|
COPY package.json ./
|
|
COPY package-lock.json ./
|
|
|
|
# Install
|
|
RUN npm install --ignore-scripts
|
|
|
|
# Copy over next.js config
|
|
COPY next.config.js ./next.config.js
|
|
|
|
# Copy all files
|
|
COPY . .
|
|
|
|
CMD ["npm", "run", "dev"]
|