FROM python:3.9-slim WORKDIR /app # Copy the service emulator script COPY server.py . # Expose the ImageNow service port EXPOSE 6000 # Run the emulator # Using -u for unbuffered output to see logs immediately CMD ["python", "-u", "server.py"]