We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81841e6 commit 42251caCopy full SHA for 42251ca
1 file changed
Dockerfile
@@ -4,9 +4,13 @@ FROM node:${NODE_VERSION} AS builder
4
5
WORKDIR /usr/src/app
6
7
-RUN sed -i 's|deb.debian.org/debian|archive.debian.org/debian|g' /etc/apt/sources.list \
8
- && sed -i 's|security.debian.org/debian-security|archive.debian.org/debian-security|g' /etc/apt/sources.list \
9
- && apt-get update \
+# Keep the .git directory in order to properly report version
+COPY ./package.json yarn.lock ./
+
10
+ENV PYTHON=python3.9
11
+ENV PY_VERSION=3.9.7
12
13
+RUN apt-get update \
14
&& apt-get install -y --no-install-recommends \
15
build-essential \
16
ca-certificates \
0 commit comments