All checks were successful
Build / build (pull_request) Successful in 54s
This reverts commit 7ca7147b78c55fa4177b723960fdcc2aa1106fb7.
12 lines
164 B
Docker
12 lines
164 B
Docker
FROM node:24-alpine3.21
|
|
|
|
RUN apk add --no-cache bash jq
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN npm i --omit=dev
|
|
RUN npm run build
|
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|