File size: 222 Bytes
9e5fa5b
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM fix-base

WORKDIR /app
COPY . /app

# Make sure store/ and log/ exist
RUN mkdir -p /app/store /app/log

# Install specific deps
RUN pip install --no-cache-dir kafka-python requests

CMD ["python", "fix-ui-client.py"]