mirror of
https://git.juggalol.com/agatha/stockbot-buyvm.git
synced 2024-11-16 20:56:40 +00:00
11 lines
180 B
Docker
11 lines
180 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.py /app
|
||
|
|
||
|
CMD ["python", "stockbot-buyvm.py"]
|