From 4c5484a4bd416e362a2423e5de343684bd0e34bb Mon Sep 17 00:00:00 2001 From: Sean McCarthy Date: Fri, 24 Jun 2022 14:42:26 -0600 Subject: [PATCH] added dos2unix --- Dockerfile.dev | 2 +- scripts/poetry_publish_package_prod.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index 422a9d34a..684a91f99 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -18,7 +18,7 @@ ARG COMPOSE_DOCKER_CLI_BUILD=1 # Configure apt and install packages # I had to add --insecure since curl didn't work... RUN apt-get update && \ - apt-get install -y --no-install-recommends apt-utils dialog curl iputils-ping unzip 2>&1 && \ + apt-get install -y --no-install-recommends apt-utils dialog curl iputils-ping unzip dos2unix 2>&1 && \ # Install AWS CLI curl --insecure "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \ unzip awscliv2.zip && \ diff --git a/scripts/poetry_publish_package_prod.sh b/scripts/poetry_publish_package_prod.sh index f88c07a20..dfcf2039a 100644 --- a/scripts/poetry_publish_package_prod.sh +++ b/scripts/poetry_publish_package_prod.sh @@ -20,4 +20,3 @@ poetry build # poetry publish --build # poetry publish --build --username $PYPI_USERNAME_PROD --password $PYPI_PASSWORD_PROD poetry publish --username __token__ --password $PYPI_TOKEN_PROD -