9 lines
148 B
Docker
9 lines
148 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN --mount=type=cache,target=/tmp/pip pip install . --cache-dir /tmp/pip
|
|
|
|
CMD python3 -m customiwmserver
|