-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from ldilley/master
Docker/Podman support, interpret() prototype correction, and musl printf flush fix
- Loading branch information
Showing
10 changed files
with
166 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Concoct - An imperative, dynamically-typed, interpreted, general-purpose programming language | ||
# Copyright (c) 2020-2023 BlakeTheBlock and Lloyd Dilley | ||
# http://concoct.ist/ | ||
|
||
FROM alpine:latest AS construct | ||
RUN apk update && apk add clang cmake git make musl-dev && apk cache clean | ||
RUN cd /root && git clone https://github.com/concoctist/concoct.git | ||
RUN cd /root/concoct && mkdir bld && cd bld && cmake .. && make | ||
|
||
FROM alpine:latest | ||
RUN adduser -h /home/concoct -g "Concoct Account" -S concoct | ||
USER concoct | ||
WORKDIR /home/concoct | ||
COPY --from=construct --chown=concoct /root/concoct/bld/bin/concoct . | ||
CMD ["/home/concoct/concoct"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.