Skip to content

Commit

Permalink
changing node docker base version
Browse files Browse the repository at this point in the history
  • Loading branch information
swoopertr committed Dec 6, 2024
1 parent c16f660 commit 2587ed4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22
FROM node:22-alpine3.20

WORKDIR /app

Expand Down
5 changes: 3 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM node:22
FROM node:22-alpine3.20

WORKDIR /app

COPY package*.json ./

RUN npm install
RUN rm -rf package-lock.json && npm install
RUN npm install formik

COPY . .

Expand Down

0 comments on commit 2587ed4

Please sign in to comment.