ccprojects commited on
Commit
9cc9fe6
·
verified ·
1 Parent(s): 0f60ec7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -4
Dockerfile CHANGED
@@ -4,9 +4,12 @@ WORKDIR /app
4
 
5
  RUN apt-get update && apt-get install -y \
6
  sudo \
 
7
  git \
8
  curl \
9
  wget \
 
 
10
  build-essential \
11
  python3 python3-pip python3-venv \
12
  php php-cli \
@@ -14,12 +17,13 @@ RUN apt-get update && apt-get install -y \
14
  openjdk-17-jdk \
15
  golang \
16
  rustc cargo \
17
- lua5.4 \
18
- mono-complete \
19
- dotnet-sdk-7.0 \
20
  clang \
21
  gcc g++ \
22
- && git clone https://github.com/Exocore-Organization/exocore-web.git
 
 
 
 
23
 
24
  RUN usermod -aG sudo node && echo "node ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && chown -R node:node exocore-web && chmod -R u+rwX exocore-web
25
 
 
4
 
5
  RUN apt-get update && apt-get install -y \
6
  sudo \
7
+ software-properties-common \
8
  git \
9
  curl \
10
  wget \
11
+ gnupg \
12
+ lsb-release \
13
  build-essential \
14
  python3 python3-pip python3-venv \
15
  php php-cli \
 
17
  openjdk-17-jdk \
18
  golang \
19
  rustc cargo \
 
 
 
20
  clang \
21
  gcc g++ \
22
+ mono-complete && \
23
+ curl -sSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.gpg && \
24
+ echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-jammy-prod jammy main" > /etc/apt/sources.list.d/microsoft.list && \
25
+ apt-get update && apt-get install -y dotnet-sdk-7.0 && \
26
+ git clone https://github.com/Exocore-Organization/exocore-web.git
27
 
28
  RUN usermod -aG sudo node && echo "node ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && chown -R node:node exocore-web && chmod -R u+rwX exocore-web
29