q1/Dockerfile

11 lines
205 B
Docker
Raw Normal View History

2022-08-12 15:23:42 -04:00
FROM docker.co.clearstreet.io/clst/clst-python:3.9.5-slim-buster
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./main.py" ]