File size: 192 Bytes
6940ab2
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM capsulecode/singlefile

USER root
WORKDIR /app
COPY . /app

RUN apk add --no-cache py3-pip && pip install flask --break-system-packages

EXPOSE 7860
ENTRYPOINT ["python3", "/app/app.py"]