Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MiniDexed/commit/9142a8ea1a95e2f08e5448fd400b0fa6a49a664c?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Use custom Dockerfile for GitHub Codespaces

network+arturia
probonopd 8 months ago
parent 84525eb9e4
commit 9142a8ea1a
  1. 12
      src/.devcontainer/Dockerfile
  2. 3
      src/.devcontainer/devcontainer.json

@ -0,0 +1,12 @@
FROM mcr.microsoft.com/devcontainers/universal:linux
RUN mkdir -p /opt/gcc && \
cd /opt/gcc && \
wget -q https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz && \
tar xf gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz && \
rm gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz && \
wget -q https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-arm-none-eabi.tar.xz && \
tar xf gcc-arm-10.3-2021.07-x86_64-arm-none-eabi.tar.xz && \
rm gcc-arm-10.3-2021.07-x86_64-arm-none-eabi.tar.xz
ENV PATH=/opt/gcc/gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf/bin:/opt/gcc/gcc-arm-10.3-2021.07-x86_64-arm-none-eabi/bin:$PATH

@ -0,0 +1,3 @@
{
"build": { "dockerfile": "Dockerfile" },
}
Loading…
Cancel
Save