All checks were successful
Build / build (pull_request) Successful in 1m15s
We can rely on having up-to-date Node.js here, and reducing the size by like ~55 MiB seems decent.
12 lines
196 B
Docker
12 lines
196 B
Docker
FROM node:24-alpine3.21
|
|
|
|
RUN apk add --no-cache bash jq
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN npm i --omit=dev --omit=optional
|
|
RUN date '+%d %B %Y' > BUILD_DATE
|
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|