19 lines
317 B
Docker
19 lines
317 B
Docker
|
|
FROM python:3.13-alpine
|
||
|
|
|
||
|
|
WORKDIR /usr/src/app
|
||
|
|
|
||
|
|
COPY requirements.txt ./
|
||
|
|
|
||
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
|
||
|
|
COPY DimyServer.py .
|
||
|
|
|
||
|
|
RUN rm requirements.txt
|
||
|
|
|
||
|
|
EXPOSE 55000
|
||
|
|
EXPOSE 8000
|
||
|
|
|
||
|
|
ENV DIMY_SERVER_TCP_PORT=55000 \
|
||
|
|
DIMY_SERVER_HTTP_PORT=8000
|
||
|
|
|
||
|
|
CMD [ "python" , "./DimyServer.py" ]
|