This commit is contained in:
Michael Henke 2024-02-16 02:44:20 -04:00 committed by GitHub
commit e18a3c90a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 0 deletions

17
docker/Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM alpine:3.17 AS build-env
RUN apk add --update autoconf automake libtool git make gcc zlib g++
COPY . src/
RUN cd src \
&& make \
&& make install
FROM alpine:3.17
COPY --from=build-env /usr/local/bin /usr/local/bin
WORKDIR /
ENTRYPOINT ["/usr/local/bin/nostril"]