File size: 145 Bytes
f804ab9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.10-slim

RUN pip install --upgrade pip
RUN pip install mercury==2.4.3

COPY . /code
WORKDIR /code

CMD ["mercury", "run", "app.py"]