mirror of
https://github.com/reconurge/flowsint.git
synced 2026-04-27 02:48:02 -05:00
11 lines
140 B
Docker
11 lines
140 B
Docker
FROM python:3.10
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|