add EXPOSE port command in Dockerfile (#1568)

added EXPOSE (see https://docs.docker.com/engine/reference/builder/#expose) in the Dockerfile. With this the reverse proxy Traefik can detect the port automatically.
このコミットが含まれているのは:
Slinky-Wrangle-Punch 2020-12-13 19:49:54 +01:00 committed by GitHub
コミット a291b29c6f
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加0行の削除

ファイルの表示

@ -31,5 +31,6 @@ COPY ./config/sql/ ./config/sql/
COPY ./locales/ ./locales/
COPY --from=builder /invidious/invidious .
EXPOSE 3000
USER invidious
CMD [ "/invidious/invidious" ]