We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d6be36 commit addddbaCopy full SHA for addddba
Dockerfile
@@ -69,7 +69,7 @@ USER "${APP_USER_NAME}"
69
70
# Upgrade pip, setuptools and wheel
71
RUN pip install --user --upgrade pip && \
72
- pip install --user --upgrade setuptools wheel keyrings.alt
+ pip install --user --upgrade setuptools wheel
73
74
# Copy requirements.txt from Build Stage
75
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 {} \; &&
88
# CMD python -m ${APP_NAME}
89
90
# Use ENTRYPOINT instead CMD to force the container to start the application
91
-ENTRYPOINT python -m $APP_NAME
+ENTRYPOINT ["frigga"]
92
### --------------------------------------------------------------------
0 commit comments