Skip to content

Commit

Permalink
Node 18 upgrade in server (#1532)
Browse files Browse the repository at this point in the history
* upgrade to python3

* upgrade to pg 8.8.0 and pg-native 3.0.1
  • Loading branch information
colinmegill authored Sep 19, 2022
1 parent 224f5e4 commit 0aed01b
Show file tree
Hide file tree
Showing 4 changed files with 7,073 additions and 166 deletions.
2 changes: 1 addition & 1 deletion client-participation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM docker.io/node:11.15.0-alpine
WORKDIR /app

RUN apk add --no-cache --virtual .build \
g++ git make python
g++ git make python3

# Allow global npm installs in Docker
RUN npm config set unsafe-perm true
Expand Down
6 changes: 3 additions & 3 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM docker.io/node:14.14.0-alpine
FROM docker.io/node:18.9.0-alpine3.15

WORKDIR /app

RUN apk add postgresql-dev python-dev build-base
RUN apk add postgresql-dev python3-dev build-base

RUN apk add --no-cache --virtual .build \
g++ git make python
g++ git make python3

COPY package*.json ./

Expand Down
Loading

0 comments on commit 0aed01b

Please sign in to comment.