delete in db
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2024-02-01 16:43:31 +01:00
parent 5c8f057843
commit ce38d6cf24
3 changed files with 52 additions and 9 deletions

View File

@ -13,7 +13,8 @@ RUN \
apk add --no-cache build-base libpq-dev && \
pip install -r requirements.txt && \
if [ "${VERSION_ID2}" != "" ]; then VERSION_ID=${VERSION_ID2}; else VERSION_ID=${VERSION_ID1}; fi && \
sed -i -e 's/VERSION_ID/'$VERSION_ID'/' ${APP_DIR}/templates/index.html
sed -i -e 's/VERSION_ID/'$VERSION_ID'/' ${APP_DIR}/templates/index.html \
sed -i -e 's/VERSION_ID/'$VERSION_ID'/' ${APP_DIR}/templates/nutrition.html
EXPOSE 8080