aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.heroku
diff options
context:
space:
mode:
authorbozo.kopic <bozo@kopic.xyz>2021-12-28 20:42:10 +0100
committerbozo.kopic <bozo@kopic.xyz>2021-12-28 20:42:10 +0100
commit15640b16cd5f1fb31d1ed70158b67ad5778f63ad (patch)
tree060b8e9d28d65e8bbe718bb096cfdb490016cf16 /Dockerfile.heroku
parentb0aedec7bb1eacf5967a8f086fc7740048873a58 (diff)
WIP c implementation
Diffstat (limited to 'Dockerfile.heroku')
-rw-r--r--Dockerfile.heroku4
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