Browse Source

Change CMD to ENTRYPOINT (#1831)

To allow use of optional arguments in docker-compose command parameters
pull/1833/head
IonCannon218 4 years ago committed by GitHub
parent
commit
41ddde211d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Dockerfile

2
Dockerfile

@ -23,5 +23,5 @@ WORKDIR /app @@ -23,5 +23,5 @@ WORKDIR /app
COPY --from=build /build/owncast /app/owncast
COPY --from=build /build/webroot /app/webroot
RUN mkdir /app/data
CMD ["/app/owncast"]
ENTRYPOINT ["/app/owncast"]
EXPOSE 8080 1935

Loading…
Cancel
Save