2023-07-13 16:53:03 +02:00
|
|
|
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
|
2023-07-15 22:15:34 +02:00
|
|
|
RUN pip install python-socketio python-engineio requests
|
2023-07-13 16:53:03 +02:00
|
|
|
|
|
|
|
|
CMD ["python", "mt5_bridge.py"]
|