Skip to content

Commit

Permalink
fix: docker dev error, json-server version specify
Browse files Browse the repository at this point in the history
  • Loading branch information
rockleona committed Feb 7, 2024
1 parent 71ac55b commit 912505e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12.20.2-buster-slim
FROM node:14.21.3-buster-slim

WORKDIR /usr/local

Expand Down
2 changes: 1 addition & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12.20.2
FROM node:14.21.3

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions mock-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:12.20.2-buster-slim
FROM node:14.21.3-buster-slim

WORKDIR /usr/local

RUN npm install -g json-server
RUN npm install -g json-server@0.16.3

COPY db.json routes.json json-server-middlewares.js ./

Expand Down

0 comments on commit 912505e

Please sign in to comment.