Add EXPOSE to Dockerfile

This hints adds a port picker for Docker Decktop on macOS.
This commit is contained in:
Matthieu Talbot 2023-04-27 18:37:54 +02:00 committed by GitHub
parent d0330bb64b
commit 12765bfd12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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" ]