sbv2 / Dockerfile
tuna2134
initial
70c7d97
raw
history blame
178 Bytes
FROM python:3
COPY . .
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python3", "app.py"]