From 4d8618332c51ea1fbdff069a0277bb9938e65790 Mon Sep 17 00:00:00 2001 From: Aidan Hilt <11202897+AidanHilt@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:06:37 -0400 Subject: [PATCH] Feat/build tooling (#55) * Blah blah * Made atils not fail if there is no kubernetes configuration available * Did a bunch * Added the dockerfile at its new, lower user * Some stuff * This should be fine * Adding our first CI workflow * You'll see * Didn't get it all * Got the delete * Adding docker login to actions * Let's see this build * Getting our CI right * Fixing our workflow * Bumping version to test our CI * Think this is right? * Grabbed the wrong thing * Buncha stuff * Alright, think this will run * That was silly * Here we go --- atils/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atils/Dockerfile b/atils/Dockerfile index c4703bb6..962ac834 100644 --- a/atils/Dockerfile +++ b/atils/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.2-slim as build +FROM python:3.12-slim as build RUN pip3 install poetry @@ -10,7 +10,7 @@ RUN poetry install --no-interaction --no-dev --no-root # Build and install the project RUN poetry build -FROM python:3.12.2-slim as final +FROM python:3.12-slim as final COPY --from=build ./dist/*.whl .