fix: move generated files to a separate directory

This commit is contained in:
Adam
2026-01-25 10:47:01 +01:00
parent 0bbf01e007
commit 8e473d33d2
2 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,11 @@
# Use an official Python runtime as a parent image
FROM python:3.9-slim
FROM python:3.12-slim
# Set the working directory in the container
WORKDIR /app
RUN mkdir /output
# Copy the dependencies file to the working directory
COPY requirements.txt .