exo-ui / Dockerfile
pacman2223's picture
Update Dockerfile
3930e35 verified
Raw
History Blame Contribute Delete
214 Bytes
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"]