FROM python:alpine WORKDIR /app COPY requirements.txt /tmp/requirements.txt RUN pip install -r /tmp/requirements.txt COPY server.py /app/server.py CMD ["python", "server.py"]