Spaces:
Sleeping
Sleeping
File size: 229 Bytes
9288782 |
1 2 3 4 5 6 7 8 |
# syntax=docker/dockerfile:1
FROM python:3.11.4-bullseye
# run this before copying requirements for cache efficiency
RUN pip install --upgrade pip
COPY .devcontainer/requirements.txt .
RUN pip install -r requirements.txt |