Files
2023-07-15 22:15:34 +02:00

13 lines
295 B
Plaintext

FROM python:3.10
# Set the working directory in the container
WORKDIR /app
# Copy the bridge script to the container
COPY bridge/mt5_bridge.py .
# Install any dependencies required by the bridge script
RUN pip install python-socketio python-engineio requests
CMD ["python", "mt5_bridge.py"]