mirror of
https://git.juggalol.com/agatha/stockbot-buyvm.git
synced 2024-11-16 12:46:38 +00:00
11 lines
182 B
Docker
11 lines
182 B
Docker
FROM python:3.10
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY stockbot-buyvm.py /app
|
|
COPY config.json /app
|
|
|
|
CMD ["python", "stockbot-buyvm.py"] |