wow-token-app-bot/Dockerfile
Emily Doherty c78ced85ca Very Initial MVP
There is so much more to do, but I think it is time to commit this to VCS
2024-11-30 03:27:32 -08:00

9 lines
175 B
Docker

FROM python:3.11-bookworm as base
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
FROM base as app
COPY . .
CMD ["python", "main.py"]