diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2021-12-28 20:42:10 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2021-12-28 20:42:10 +0100 |
| commit | 15640b16cd5f1fb31d1ed70158b67ad5778f63ad (patch) | |
| tree | 060b8e9d28d65e8bbe718bb096cfdb490016cf16 /Dockerfile.heroku | |
| parent | b0aedec7bb1eacf5967a8f086fc7740048873a58 (diff) | |
WIP c implementation
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 |
