Add Brainfuck

This commit is contained in:
1computer1 2019-05-22 22:26:55 -04:00
parent 26c667299d
commit 6bd4484fb0
5 changed files with 135 additions and 0 deletions

View file

@ -0,0 +1,12 @@
FROM alpine AS build
RUN apk update && apk add g++
COPY bf.cpp .
RUN g++ bf.cpp -o bf
FROM alpine
LABEL author="1Computer1"
RUN apk update && apk add libstdc++
COPY --from=build bf /usr/local/bin/
COPY run.sh /var/run/