Merge pull request #369 from daliborfilus/fix-crystal-1.8-pcre2-docker-build

Update Dockerfile for Crystal 1.8 + check if binary works
This commit is contained in:
Vitalii Elenhaupt 2023-04-24 09:46:09 +03:00 committed by GitHub
commit 149080ae16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -6,8 +6,9 @@ COPY . /ameba/
RUN make clean && make
FROM alpine:latest
RUN apk add --update yaml pcre gc libevent libgcc
RUN apk add --update yaml pcre2 gc libevent libgcc
RUN mkdir /src
WORKDIR /src
COPY --from=builder /ameba/bin/ameba /usr/bin/
RUN ameba -v
ENTRYPOINT [ "/usr/bin/ameba" ]