Skip to content

Commit 42251ca

Browse files
committed
Revert "CLDSRV-718: fix debian apt-get urls"
This reverts commit 2378a2b.
1 parent 81841e6 commit 42251ca

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ FROM node:${NODE_VERSION} AS builder
44

55
WORKDIR /usr/src/app
66

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 \
7+
# Keep the .git directory in order to properly report version
8+
COPY ./package.json yarn.lock ./
9+
10+
ENV PYTHON=python3.9
11+
ENV PY_VERSION=3.9.7
12+
13+
RUN apt-get update \
1014
&& apt-get install -y --no-install-recommends \
1115
build-essential \
1216
ca-certificates \

0 commit comments

Comments
 (0)