use apt-get

This commit is contained in:
Ed Chalstrey 2022-02-09 10:03:12 +00:00
parent af6a9cfde3
commit 5cae3abf2b

View File

@ -5,7 +5,7 @@ RUN apt-get upgrade
RUN apt-get install -y build-essential wget
RUN apt-get install -y python3 python3-pip python3-dev python3-venv
RUN apt install parallel -y
RUN apt-get install parallel -y
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.2.1/wait /wait
RUN chmod +x /wait
@ -16,7 +16,7 @@ COPY migrations /colouring-london/migrations
COPY etl /colouring-london/etl
ENV NODE_VERSION=16.13.2
RUN apt install -y curl
RUN apt-get install -y curl
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
ENV NVM_DIR=/root/.nvm
RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}