14 lines
258 B
Docker
14 lines
258 B
Docker
FROM python:3.14-slim@sha256:584e89d31009a79ae4d9e3ab2fba078524a6c0921cb2711d05e8bb5f628fc9b9
|
|
|
|
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"]
|