Skip to content
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ FROM node:${NODE_VERSION} AS builder

WORKDIR /usr/src/app

# Keep the .git directory in order to properly report version
COPY ./package.json yarn.lock ./

ENV PYTHON=python3.9
ENV PY_VERSION=3.9.7

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
Expand Down
Loading