Skip to content

Commit

Permalink
new updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ksobitov committed Nov 29, 2023
1 parent d5f3553 commit ad3cc69
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions client/.dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules
Dockerfile
Dockerfile.dev
.dockerginore
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine as builder
FROM node:18.14-alpine as builder
WORKDIR /usr/src/app
COPY package.json .
RUN npm i
Expand Down
2 changes: 1 addition & 1 deletion client/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.10.0-alpine
FROM node:18.14-alpine

WORKDIR /usr/src/app
COPY package.json .
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:alpine14.14.0
FROM node:18.14-alpine
WORKDIR /usr/src/app
COPY package.json .
RUN npm i
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.14.0-alpine
FROM node:18.14-alpine

WORKDIR /usr/src/app
COPY package.json .
Expand Down
2 changes: 1 addition & 1 deletion worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:alpine14.14.0
FROM node:18.14-alpine
WORKDIR /usr/src/app
COPY package.json .
RUN npm i
Expand Down
2 changes: 1 addition & 1 deletion worker/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.10.0-alpine
FROM node:18.14-alpine

WORKDIR /usr/src/app
COPY package.json .
Expand Down

0 comments on commit ad3cc69

Please sign in to comment.