summaryrefslogtreecommitdiffhomepage
path: root/captain-definition
blob: 8f9a755ae14af48146f51aeef9b65266d17af7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
    "schemaVersion": 2,
    "dockerfileLines": [
        "FROM node:22.2.0-bookworm as build",
        "COPY . /app",
        "WORKDIR /app",
        "RUN npm i",
        "RUN npm run build",
        "FROM nginx:mainline-alpine-slim",
        "COPY --from=build /app/dist /usr/share/nginx/html"
    ]
}