Skip to content

Commit

Permalink
Fix python installation in server docker and single image
Browse files Browse the repository at this point in the history
  • Loading branch information
adrinr committed Aug 10, 2023
1 parent 2b87b4f commit 0abc0c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hosting/single/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:18-slim as build

# install node-gyp dependencies
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils cron g++ make python
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils cron g++ make python3

# add pin script
WORKDIR /
Expand Down
2 changes: 1 addition & 1 deletion packages/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ENV TOP_LEVEL_PATH=/

# handle node-gyp
RUN apt-get update \
&& apt-get install -y --no-install-recommends g++ make python
&& apt-get install -y --no-install-recommends g++ make python3
RUN yarn global add pm2

# Install client for oracle datasource
Expand Down

0 comments on commit 0abc0c4

Please sign in to comment.