Manuel
1205933acd
* Allow container to be run with custom command * Reduce language image sizes * Update OpenJDK to latest version * Use swc for TypeScript and don't print by default * Update Haskell image and use stable Debian slim * Fix formatting and revert TS changes
12 lines
221 B
Docker
12 lines
221 B
Docker
FROM alpine AS build
|
|
|
|
COPY bf.cpp .
|
|
RUN apk add --no-cache g++ && \
|
|
g++ bf.cpp -o bf
|
|
|
|
FROM alpine
|
|
LABEL author="1Computer1"
|
|
|
|
RUN apk add --no-cache libstdc++
|
|
COPY --from=build bf /usr/local/bin/
|
|
COPY run.sh /var/run/
|