diff options
Diffstat (limited to 'Dockerfile.heroku')
| -rw-r--r-- | Dockerfile.heroku | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile.heroku b/Dockerfile.heroku index 8dfc3fb..7cddc2f 100644 --- a/Dockerfile.heroku +++ b/Dockerfile.heroku @@ -6,8 +6,10 @@ RUN apt update -qy && \ FROM opcut-base as opcut-build WORKDIR /opcut COPY . . -RUN apt install -qy nodejs yarnpkg git && \ +RUN apt install -qy nodejs yarnpkg git gcc-mingw-w64-x86-64-win32 && \ ln -sT /usr/bin/yarnpkg /usr/bin/yarn && \ + ln -sT /usr/bin/x86_64-w64-mingw32-cpp-win32 /usr/bin/x86_64-w64-mingw32-cpp && \ + ln -sT /usr/bin/x86_64-w64-mingw32-cc-win32 /usr/bin/x86_64-w64-mingw32-cc && \ pip install -qq -r requirements.pip.dev.txt && \ doit |
