mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-22 08:08:04 +01:00
6 lines
268 B
Text
6 lines
268 B
Text
|
FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye
|
||
|
RUN apt-get update && apt-get upgrade -y
|
||
|
RUN pip install pip-tools invoke
|
||
|
COPY requirements.in requirements.txt requirements-dev.in requirements-dev.txt constraints.txt tasks.py ./
|
||
|
RUN invoke sync-dependencies
|