charasheet/.devcontainer/Dockerfile

6 lines
268 B
Docker
Raw Normal View History

2023-03-25 09:43:21 +01:00
FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye
RUN apt-get update && apt-get upgrade -y
2023-03-25 09:46:19 +01:00
RUN pip install pip-tools invoke
2023-03-25 09:53:18 +01:00
COPY requirements.in requirements.txt requirements-dev.in requirements-dev.txt constraints.txt tasks.py ./
2023-03-25 09:46:19 +01:00
RUN invoke sync-dependencies