Loading project.clj +1 −1 Original line number Diff line number Diff line (defproject python/lein-template "2.0.0" (defproject python/lein-template "2.0.1" :description "lein template for a python project" :url "https://gitlab.emacsos.com/sylecn/python-project-template" :license {:name "Apache License 2.0" Loading src/leiningen/new/python/Dockerfile.template +2 −1 Original line number Diff line number Diff line FROM sylecn/debian:buster-slim FROM debian:buster-slim # FROM sylecn/debian:buster-slim-cn #LABEL description="TODO add image description and uncomment this" Loading src/leiningen/new/python/utils/build-deb +1 −1 Original line number Diff line number Diff line Loading @@ -64,7 +64,7 @@ fpm -t deb -s dir -n "$DEB_PKG_NAME" -v "$VERSION" -f \ DEB_PKG="{{name}}_${VERSION}_amd64.deb" DEPENDS=`dpkg-deb -f "$DEB_PKG" Depends | sed "s/, / /g"` if ! echo "$DEPENDS" | grep -q python; then DEPENDS="$DEPENDS python3 python3-pip python3-distutils python3-setuptools" DEPENDS="$DEPENDS python3 python3-venv python3-pip python3-setuptools python3-distutils" fi sed "s/DEB_PKG/$DEB_PKG/; s/DEPENDS/$DEPENDS/" Dockerfile.template > Dockerfile Loading Loading
project.clj +1 −1 Original line number Diff line number Diff line (defproject python/lein-template "2.0.0" (defproject python/lein-template "2.0.1" :description "lein template for a python project" :url "https://gitlab.emacsos.com/sylecn/python-project-template" :license {:name "Apache License 2.0" Loading
src/leiningen/new/python/Dockerfile.template +2 −1 Original line number Diff line number Diff line FROM sylecn/debian:buster-slim FROM debian:buster-slim # FROM sylecn/debian:buster-slim-cn #LABEL description="TODO add image description and uncomment this" Loading
src/leiningen/new/python/utils/build-deb +1 −1 Original line number Diff line number Diff line Loading @@ -64,7 +64,7 @@ fpm -t deb -s dir -n "$DEB_PKG_NAME" -v "$VERSION" -f \ DEB_PKG="{{name}}_${VERSION}_amd64.deb" DEPENDS=`dpkg-deb -f "$DEB_PKG" Depends | sed "s/, / /g"` if ! echo "$DEPENDS" | grep -q python; then DEPENDS="$DEPENDS python3 python3-pip python3-distutils python3-setuptools" DEPENDS="$DEPENDS python3 python3-venv python3-pip python3-setuptools python3-distutils" fi sed "s/DEB_PKG/$DEB_PKG/; s/DEPENDS/$DEPENDS/" Dockerfile.template > Dockerfile Loading