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