Add EXPOSE to Dockerfile (#107)

This commit is contained in:
Matthieu Talbot 2023-04-27 18:45:24 +02:00 committed by GitHub
parent d0330bb64b
commit 062f832510
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -10,4 +10,5 @@ RUN make build
FROM debian:$DEBIAN_VERSION
COPY --from=builder /build/local-ai /usr/bin/local-ai
EXPOSE 8080
ENTRYPOINT [ "/usr/bin/local-ai" ]