basic structure setup

This commit is contained in:
Niklas Mueller 2024-06-15 17:01:42 +02:00
parent 0ba46dad75
commit 95f8488227
9 changed files with 200 additions and 2 deletions

View file

@ -0,0 +1,15 @@
FROM python:3.10-slim
WORKDIR /app
COPY ./requirements.txt /app
RUN apt-get update && apt-get install -y build-essential
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 8000
COPY . /app
CMD ["python", "src/app.py"]