HAL9000 for gmake and docker

This commit is contained in:
Samuel Aubertin
2022-02-23 12:07:45 +01:00
commit 3bb8dd4c00
5 changed files with 200 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM alpine
RUN apk update
COPY . /HAL9000
WORKDIR /HAL9000
RUN apk add --no-cache --virtual build-dependencies gcc libc-dev openssl-dev make && make && apk del build-dependencies
CMD ./HAL9000