You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
362 B

# Build Stage
FROM node:12-buster-slim
# Install tools
RUN apt-get update \
&& apt-get install -y build-essential \
&& apt-get install -y libffi-dev \
&& apt-get install -y libssl-dev \
&& apt-get install -y python3 \
&& apt-get install -y python3-pip \
&& pip3 install -IU docker-compose \
&& chmod +x /usr/local/bin/docker-compose