Skip to content

Commit

Permalink
Merge pull request #477 from rockleona/fix/docker-dev-error
Browse files Browse the repository at this point in the history
fix: docker dev error, json-server version specify
  • Loading branch information
SivanYeh authored Feb 15, 2024
2 parents 9e9be1d + 2e3139a commit 0695ba5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.18.1
14.21.3
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Frontend of PyCon TW official website.

### Requirements

- node >= 12.20.2
- node >= 14.21.3

> You can refer to `package.json` file for more details.
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 0695ba5

Please sign in to comment.