mirror of
https://github.com/AtHeartEngineer/poap-reddit-bot.git
synced 2026-01-08 04:03:53 -05:00
10 lines
181 B
Docker
10 lines
181 B
Docker
FROM python:3
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"] |