mirror of
https://github.com/tiennm99/artemis-demo-agent.git
synced 2026-08-23 04:27:01 +00:00
10 lines
88 B
Docker
10 lines
88 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["python", "server.py"]
|