Commit 89b01e09 authored by Marie FU's avatar Marie FU

add docker file

parent 5d3ae413
Pipeline #7288 failed with stage
in 1 minute and 25 seconds
FROM python:3.10
EXPOSE 5000
WORKDIR /app
COPY requirement.txt .
RUN pip install -r requirement.txt
COPY . .
CMD ["flask", "--app", "gargantools", "run", "--host", "0.0.0.0"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment