-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
# Usa una imagen base | ||
FROM mcr.microsoft.com/devcontainers/universal:2 | ||
# Utiliza una imagen base oficial de Node.js | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-14 | ||
|
||
# Instala Node.js | ||
RUN apt-get update && apt-get install -y nodejs npm | ||
|
||
# Instala Python | ||
RUN apt-get install -y python3 python3-pip | ||
|
||
# Instala otras dependencias necesarias | ||
RUN pip3 install --upgrade pip | ||
# Instala herramientas adicionales si es necesario | ||
RUN apt-get update && apt-get install -y \ | ||
git \ | ||
&& rm -rf /var/lib/apt/lists/* |