Spaces:
Running
Running
python 3.11
Browse files- Dockerfile +1 -1
- st_app.py +2 -0
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM python:3.
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
|
|
1 |
+
FROM python:3.11
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
st_app.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
from PIL import Image
|
2 |
import sys
|
3 |
import re
|
|
|
|
|
4 |
|
5 |
import streamlit as st
|
6 |
from streamlit_pills import pills
|
|
|
1 |
from PIL import Image
|
2 |
import sys
|
3 |
import re
|
4 |
+
import itertools
|
5 |
+
import asyncio
|
6 |
|
7 |
import streamlit as st
|
8 |
from streamlit_pills import pills
|