mirror of
https://github.com/the-jordan-lab/docs.git
synced 2025-05-09 21:32:38 +00:00
11 lines
292 B
Docker
11 lines
292 B
Docker
FROM mcr.microsoft.com/devcontainers/python:3.10
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y git curl && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set up a working directory
|
|
WORKDIR /workspaces/lab-docs
|
|
|
|
# (Optional) Install additional tools or dependencies here |