Update Dockerfile
Browse files- 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
|
| 5 |
-
RUN apt-get update && apt-get install -y python3 python3-pip
|
| 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
|