mirror of
https://github.com/Paillat-dev/pycord-reactive-views.git
synced 2026-01-02 01:06:18 +00:00
13 lines
340 B
Docker
13 lines
340 B
Docker
FROM mcr.microsoft.com/devcontainers/python:3
|
|
|
|
RUN python -m pip install --upgrade pip \
|
|
&& python -m pip install 'flit>=3.8.0'
|
|
|
|
ENV FLIT_ROOT_INSTALL=1
|
|
|
|
COPY pyproject.toml .
|
|
RUN touch README.md \
|
|
&& mkdir -p src/python_package \
|
|
&& python -m flit install --only-deps --deps develop \
|
|
&& rm -r pyproject.toml README.md src
|