14 lines
258 B
Docker
14 lines
258 B
Docker
FROM python:3.14-slim@sha256:5e59aae31ff0e87511226be8e2b94d78c58f05216efda3b07dbbed938ec8583b
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY server.py .
|
|
|
|
ENV PORT=8484
|
|
EXPOSE 8484
|
|
|
|
CMD ["python", "server.py"]
|