Spaces:
Runtime error
Runtime error
| FROM ubuntu:22.04 | |
| WORKDIR /code | |
| # install app dependencies | |
| RUN apt-get update && apt-get install -y python3 python3-pip | |
| # install app | |
| COPY . . | |
| # final configuration | |
| CMD ["python3", "-m", "http.server", "8080"] |