Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

View File

@ -1,14 +1,14 @@
# app/Dockerfile
# pull the official docker image
FROM python:3.12-alpine AS poetry-base
FROM python:3.12-alpine as poetry-base
# default build args
ARG APP_VERSION=0.1.1 \
ARG APP_VERSION=0.1.0 \
APP_DIR=/app \
SRC_DIR=./mgrctl \
PKG_NAME=mgrctl \
PKG_VERSION=0.1.1
PKG_VERSION=0.1.0
# set env variables
ENV APP_NAME=mgrctl \
@ -26,7 +26,7 @@ ENV APP_NAME=mgrctl \
POETRY_VIRTUALENVS_CREATE=false \
POETRY_CACHE_DIR='/var/cache/pypoetry' \
POETRY_HOME='/usr/local' \
POETRY_VERSION=2.1.2
POETRY_VERSION=1.7.1
# install system deps
RUN apk --no-cache add curl \
@ -47,7 +47,7 @@ RUN poetry build --format wheel \
# now multistage builds
FROM python:3.12-alpine
# copy app and dependencies
# copy app and dependences
COPY --from=poetry-base /usr/local/ /usr/local/
# install bash and mgrctl shell completion