Skip to content

Commit

Permalink
fix: update node version in docker file for eslint requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
HoreKk committed May 6, 2024
1 parent e00f104 commit 84c58c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp-next/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##### DEPENDENCIES

FROM node:16-alpine3.17 AS deps
FROM node:18-alpine3.18 AS deps
RUN apk add --no-cache libc6-compat openssl1.1-compat
WORKDIR /app

Expand All @@ -16,7 +16,7 @@ RUN \

##### BUILDER

FROM node:16-alpine3.17 AS builder
FROM node:18-alpine3.18 AS builder

ARG ELASTIC_HOST
ARG ELASTIC_PASSWORD
Expand All @@ -41,7 +41,7 @@ RUN \

##### RUNNER

FROM node:16-alpine3.17 AS runner
FROM node:18-alpine3.18 AS runner
WORKDIR /app

ENV NODE_ENV production
Expand Down

0 comments on commit 84c58c4

Please sign in to comment.