Skip to content

Commit

Permalink
Add initial .devcontainer setup for Node.js and Python development
Browse files Browse the repository at this point in the history
  • Loading branch information
HlexNC committed Apr 3, 2024
1 parent 6aa02d9 commit 5acac03
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Use an official Node.js runtime as a parent image
FROM node:14

# Set the working directory in the container
WORKDIR /workspace

# Install Python 3
RUN apt-get update && \
apt-get install -y python3 python3-pip && \
rm -rf /var/lib/apt/lists/*

# Optionally install global npm packages
RUN npm install -g nodemon

0 comments on commit 5acac03

Please sign in to comment.