Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
cplee committed May 14, 2024
2 parents 3b9ca84 + b71b997 commit b5efb0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ RUN apt-get update \
gnupg2 software-properties-common less vim graphviz \
libgbm-dev libasound2 xvfb
RUN curl -s https://api.github.com/repos/jgraph/drawio-desktop/releases/latest \
| grep browser_download_url | grep '\.deb' | cut -d '"' -f 4 | wget -i - \
&& apt -f install -y ./drawio-amd64-*.deb \
&& rm -f ./drawio-amd64-*.deb
| grep browser_download_url | grep '\.deb' | grep $(dpkg --print-architecture) | cut -d '"' -f 4 | wget -i - \
&& apt -f install -y ./drawio-$(dpkg --print-architecture)-*.deb \
&& rm -f ./drawio-$(dpkg --print-architecture)-*.deb

COPY requirements.txt /tmp/
RUN pip install -r /tmp/requirements.txt
Expand Down

0 comments on commit b5efb0a

Please sign in to comment.