generated from nathanwoodburn/python-webserver-template
feat: Initial code
This commit is contained in:
9
docker_agent/Dockerfile
Normal file
9
docker_agent/Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM python:3.13-alpine
|
||||
|
||||
WORKDIR /app
|
||||
COPY requirements.txt /app/requirements.txt
|
||||
RUN pip install --no-cache-dir -r /app/requirements.txt
|
||||
COPY app.py /app/app.py
|
||||
|
||||
EXPOSE 9090
|
||||
ENTRYPOINT ["python", "/app/app.py"]
|
||||
Reference in New Issue
Block a user