Skip to content

Commit

Permalink
Add python dependency to server docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
alextran1502 committed Mar 22, 2022
1 parent 3e918ff commit ce1ab1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion mobile/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ default_platform(:ios)
platform :ios do
desc "iOS Beta"
lane :beta do
increment_version_number(
version_number: "1.3.1"
)
increment_build_number({
build_number: latest_testflight_build_number + 1
})
Expand All @@ -32,7 +35,7 @@ platform :ios do
desc "iOS Release"
lane :release do
increment_version_number(
version_number: "1.3.0"
version_number: "1.3.1"
)
increment_build_number({
build_number: latest_testflight_build_number + 1
Expand Down
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /usr/src/app

COPY package.json package-lock.json ./

# RUN apk add --update-cache build-base python3 libheif vips-dev vips ffmpeg
RUN apk add --update-cache build-base python3

RUN npm install

Expand All @@ -30,7 +30,7 @@ WORKDIR /usr/src/app

COPY package.json package-lock.json ./

# RUN apk add --update-cache build-base python3 libheif vips-dev vips ffmpeg
RUN apk add --update-cache build-base python3

RUN npm install --only=production

Expand Down

0 comments on commit ce1ab1e

Please sign in to comment.