Skip to content

Commit

Permalink
chore(build): Add python to build-container
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbo2002 committed Jul 22, 2021
1 parent 6e2b47b commit de01ace
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ FROM $BASEIMAGE as build-container
ARG CLIENT_TAG=latest
ENV SENTRY_DSN=$SENTRY_DSN

RUN apk add --no-cache --update --force-broken-world \
RUN apk add --no-cache --update \
nodejs \
npm \
libstdc++ \
make \
gcc \
g++ && \
g++ \
python3 && \
npm install -g --unsafe-perm npm

COPY package*.json "/@ubud-app/server/"
Expand Down Expand Up @@ -52,7 +53,7 @@ ENV NEXT=$NEXT

RUN apk add --no-cache --update \
nodejs \
nodejs-npm && \
npm && \
npm install -g --unsafe-perm npm && \
addgroup -g $GID ubud && \
adduser -u $UID -G ubud -s /bin/sh -D ubud
Expand Down

0 comments on commit de01ace

Please sign in to comment.