10 lines
158 B
Docker
10 lines
158 B
Docker
FROM python:3.10
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip install .
|
|
|
|
CMD python3 -c "import iwm_browser.main as main; main.start()"
|
|
#CMD python3 iwm_archiver/main.py
|