mirror of
https://github.com/stake-house/poap-reddit-bot.git
synced 2026-01-08 21:48:02 -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"] |