13ze commited on
Commit
3d47765
1 Parent(s): 033f572

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -1,10 +1,8 @@
1
  # Use uma imagem base que tenha Python e Node.js
2
  FROM node:14
3
 
4
- # Instale Python, pip e o compilador Rust
5
- RUN apt-get update && apt-get install -y python3 python3-pip curl && \
6
- curl https://sh.rustup.rs -sSf | sh -s -- -y && \
7
- . $HOME/.cargo/env
8
 
9
  # Crie um diretório de trabalho
10
  WORKDIR /app
 
1
  # Use uma imagem base que tenha Python e Node.js
2
  FROM node:14
3
 
4
+ # Instale Python e pip
5
+ RUN apt-get update && apt-get install -y python3 python3-pip
 
 
6
 
7
  # Crie um diretório de trabalho
8
  WORKDIR /app