diff --git a/src/Dockerfile_ecs b/src/Dockerfile_ecs new file mode 100644 index 0000000..64331ed --- /dev/null +++ b/src/Dockerfile_ecs @@ -0,0 +1,11 @@ +FROM python:3.12-slim + +WORKDIR /app + +COPY ./requirements.txt /app/requirements.txt + +RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt && pip install --no-cache-dir --upgrade boto3 + +COPY ./api /app/api + +CMD ["uvicorn", "api.app:app", "--host", "0.0.0.0", "--port", "80"] \ No newline at end of file