mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
14 lines
597 B
Docker
14 lines
597 B
Docker
|
ARG VARIANT=3-bullseye
|
||
|
FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}
|
||
|
|
||
|
RUN python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel
|
||
|
|
||
|
# Install craftbeerpi requirements for better caching
|
||
|
COPY ./requirements.txt /workspace/requirements.txt
|
||
|
RUN pip3 install --no-cache-dir -r /workspace/requirements.txt
|
||
|
|
||
|
# Install current version of cbpi-ui
|
||
|
RUN mkdir /opt/downloads \
|
||
|
&& curl https://github.com/avollkopf/craftbeerpi4-ui/archive/main.zip -L -o /opt/downloads/cbpi-ui.zip \
|
||
|
&& pip3 install --no-cache-dir /opt/downloads/cbpi-ui.zip \
|
||
|
&& rm -rf /opt/downloads
|