Skip to content

Dockerfile #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,4 @@ wasm32-wasi/
wasm64-wasi/
x64/
x86_64-w64-mingw32/
Dockerfile

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wut

I musta been living under a rock. Why ignore Dockerfile?

17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM node:alpine AS base
VOLUME /root/.mako
CMD "makod"

RUN apk upgrade --no-cache

# Install build dependencies and compile
FROM base AS build
RUN apk add --no-cache gcc make cmake musl-dev
RUN mkdir -p /code
WORKDIR /code
COPY . /code/
RUN cmake . && make

FROM base
COPY --from=build /code/mako /usr/bin/mako
COPY --from=build /code/makod /usr/bin/makod