File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ FROM node:24.14.0@sha256:3a09aa6354567619221ef6c45a5051b671f953f0a1924d1f819ffb2
22LABEL maintainer="Sebastian Kawelke <sebatian.kawelke@l3montree.com"
33
44# Disable telemetry
5- ENV NEXT_TELEMETRY_DISABLED 1
6- ENV NODE_ENV production
5+ ENV NEXT_TELEMETRY_DISABLED= 1
6+ ENV NODE_ENV= production
77
88WORKDIR /usr/app/
99
10- ENV PORT 3000
10+ ENV PORT= 3000
1111EXPOSE 3000
1212
13- ENV NEXT_PUBLIC_ENVIRONMENT production
13+ ENV NEXT_PUBLIC_ENVIRONMENT= production
1414
1515COPY package-lock.json .
1616COPY package.json .
@@ -35,14 +35,14 @@ RUN npm run build
3535
3636RUN mkdir -p /usr/app/.next/cache/images && chown -R 53111:53111 /usr/app/.next/cache/images
3737
38- FROM registry.opencode.de/open-code/oci/nodejs:24@sha256:060a357b71a47f4e1f070d1840f663008793018020ff566baf524cf0b206db97
38+ FROM registry.opencode.de/open-code/oci/nodejs:24-minimal @sha256:8a5b144301ac2f11e2a10c39218e6cd200a7d90a238c3ace7c43a32dff975c19
3939
4040USER 53111
4141
4242WORKDIR /usr/app/
43- ENV PORT 3000
44- ENV NODE_ENV production
45- ENV NEXT_TELEMETRY_DISABLED 1
43+ ENV PORT= 3000
44+ ENV NODE_ENV= production
45+ ENV NEXT_TELEMETRY_DISABLED= 1
4646
4747COPY --from=builder --chown=53111:53111 /usr/app/.next /usr/app/.next
4848COPY --from=builder --chown=53111:53111 /usr/app/node_modules /usr/app/node_modules
You can’t perform that action at this time.
0 commit comments