File tree Expand file tree Collapse file tree 4 files changed +10
-14
lines changed Expand file tree Collapse file tree 4 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM rust:latest
33RUN \
44 apt-get update && \
55 apt-get -y upgrade && \
6- apt-get -y install openjdk-11-jdk python3-venv
6+ apt-get -y install openjdk-11-jdk python3-venv python3-dev
77
88ENV HOME /root
99WORKDIR /root
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM golang:1.15
33RUN \
44 apt-get update && \
55 apt-get -y upgrade && \
6- apt-get -y install python3-venv
6+ apt-get -y install python3-venv python3-dev
77
88ENV HOME /root
99WORKDIR /root
Original file line number Diff line number Diff line change 1- FROM openjdk:13
1+ FROM node:15-buster
22
33RUN \
4- yum install deltarpm -y && \
5- yum update -y && \
6- yum install python3 -y && \
7- yum install -y gcc-c++ make && \
8- curl -sL https://rpm.nodesource.com/setup_13.x | bash - && \
9- yum install nodejs -y && \
10- useradd -ms /bin/bash crate
4+ apt-get update && \
5+ apt-get -y upgrade && \
6+ apt-get -y install python3-venv python3-dev
117
12- ENV HOME /home/crate
13- WORKDIR /home/crate
14- USER crate
8+ ENV HOME /root
9+ WORKDIR /root
10+ USER ROOT
1511
1612CMD ["bash" ]
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:3.1
33RUN \
44 apt-get update && \
55 apt-get -y upgrade && \
6- apt-get -y install python3-venv
6+ apt-get -y install python3-venv python3-dev
77
88ENV HOME /root
99WORKDIR /root
You can’t perform that action at this time.
0 commit comments