We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a780ef3 commit 9ef3908Copy full SHA for 9ef3908
1 file changed
_dev/docker/mono/Dockerfile
@@ -17,6 +17,7 @@ RUN apt-get update && apt-get install -y \
17
git-core \
18
python3-setuptools \
19
python3-dev \
20
+ python3-pip \
21
python3-venv \
22
build-essential \
23
zip \
@@ -39,6 +40,9 @@ FROM fxa-build-utils AS fxa-build
39
40
COPY --chown=app:app . /fxa
41
USER app
42
WORKDIR /fxa
43
+RUN rm -rf .venv \
44
+ && python3 -m venv .venv \
45
+ && .venv/bin/pip install 'glean_parser~=14.5'
46
RUN _dev/docker/mono/build.sh $(cat packages/version.json | jq -r '.version.version')
47
48
# Final image
0 commit comments