Skip to content
Snippets Groups Projects
Commit fea8ddfa authored by Pete Pedersen's avatar Pete Pedersen
Browse files

DEV-153 adding dockerfile for the buil of docker image

parent fa8f6f66
Branches
Tags
No related merge requests found
# syntax=docker/dockerfile:1
FROM python:3.8-slim-buster
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip3 install -r /app/requirements.txt
COPY ../webapp /app/.
COPY ../sq_project_list.py /app/.
COPY ../sq_webapp.py /app/.
COPY ../config.py /app/.
CMD ["python3", "-m" , "flask", "run", "--host=0.0.0.0"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment