diff --git a/Dockerfile b/Dockerfile index 61dce92fd0..e95ed29966 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \