Nenhuma Descrição

Dockerfile 561B

12345678910111213141516
  1. FROM mcr.microsoft.com/devcontainers/python:1-3.9-bullseye
  2. ENV PYTHONUNBUFFERED 1
  3. # [Optional] If your requirements rarely change, uncomment this section to add them to the image.
  4. # COPY requirements.txt /tmp/pip-tmp/
  5. # RUN pip3 --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements.txt \
  6. # && rm -rf /tmp/pip-tmp
  7. # [Optional] Uncomment this section to install additional OS packages.
  8. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
  9. # && apt-get -y install --no-install-recommends <your-package-list-here>