feat!(mgrctl) new release 0.1.1

Updated:
      - dependencies
      - docker hub latest image

    Fixed:
      - dci input container name

    Changed:
      - remove peewee deps
      - remove data base management
      - remove mysql container for dev env
      - remove \__version__ from sub app
This commit is contained in:
2025-05-07 16:17:20 +09:00
parent 99dd122262
commit 6bbebd5a7a
28 changed files with 1236 additions and 5698 deletions

View File

@@ -1,7 +1,7 @@
# app/Dockerfile
# pull the official docker image
FROM python:3.11-alpine as poetry-base
FROM python:3.12-alpine as poetry-base
# default build args
ARG APP_VERSION=0.1.0 \
@@ -45,7 +45,7 @@ RUN poetry build --format wheel \
&& rm -r /usr/local/venv
# now multistage builds
FROM python:3.11-alpine
FROM python:3.12-alpine
# copy app and dependences
COPY --from=poetry-base /usr/local/ /usr/local/