Skip to content

Commit c9a730a

Browse files
committed
update deps
1 parent 3832bcc commit c9a730a

File tree

3 files changed

+1946
-1589
lines changed

3 files changed

+1946
-1589
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
FROM node:18.0.0-alpine as builder
1+
FROM node:18-alpine as builder
22
WORKDIR /app
33

44
COPY package.json package-lock.json .npmrc ./
55
# overrides field on package.json is not allowd npm ci command...
66
RUN npm i && npm update
77

8-
FROM node:18.0.0-alpine
8+
FROM node:18-alpine
99
WORKDIR /app
1010
ENV PATH /app/node_modules/.bin:$PATH
1111

1212
COPY . .
1313
COPY --from=builder /app/node_modules ./node_modules
1414

15-
ENV NEXT_TELEMETRY_DISABLED 1
16-
ENV NODE_ENV production
15+
ENV NEXT_TELEMETRY_DISABLED=1
16+
ENV NODE_ENV=production
1717

1818
RUN npm run build
1919

0 commit comments

Comments
 (0)