Files
4337-server/Dockerfile

19 lines
317 B
Docker
Raw Permalink Normal View History

2025-04-21 10:08:18 +00:00
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" ]