Skip to content

Commit addddba

Browse files
committed
fix entrypoint
1 parent 6d6be36 commit addddba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ USER "${APP_USER_NAME}"
6969

7070
# Upgrade pip, setuptools and wheel
7171
RUN pip install --user --upgrade pip && \
72-
pip install --user --upgrade setuptools wheel keyrings.alt
72+
pip install --user --upgrade setuptools wheel
7373

7474
# Copy requirements.txt from Build Stage
7575
COPY --from=build /code/requirements.txt "${APP_ARTIFACT_DIR}"
@@ -88,5 +88,5 @@ RUN find . -type f -name *.whl -exec pip install --user {} \; -exec rm {} \; &&
8888
# CMD python -m ${APP_NAME}
8989

9090
# Use ENTRYPOINT instead CMD to force the container to start the application
91-
ENTRYPOINT python -m $APP_NAME
91+
ENTRYPOINT ["frigga"]
9292
### --------------------------------------------------------------------

0 commit comments

Comments
 (0)